diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2021-01-11 19:26:45 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2021-01-11 19:26:56 -0500 |
commit | 6fe125155e33bcd103991ccaf490e1adcff46856 (patch) | |
tree | 6b4fdb34900e8c7fd47c5501da6b07d2d8adc1a8 /config | |
parent | 96c7a8a2b45e5354a8852485c7e0f54ab5ddac13 (diff) |
Firelink setup
Diffstat (limited to 'config')
-rw-r--r-- | config/auto-upgrade.nix | 1 | ||||
-rw-r--r-- | config/desktop.nix | 3 | ||||
-rw-r--r-- | config/gaming.nix | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/config/auto-upgrade.nix b/config/auto-upgrade.nix index bb82dc7..d7c145d 100644 --- a/config/auto-upgrade.nix +++ b/config/auto-upgrade.nix @@ -22,5 +22,6 @@ system.autoUpgrade = { enable = true; + dates = "weekly"; }; } diff --git a/config/desktop.nix b/config/desktop.nix index 14cc50f..4380537 100644 --- a/config/desktop.nix +++ b/config/desktop.nix @@ -60,6 +60,7 @@ imagemagick dzen2 rofi + autorandr ]; i18n.inputMethod = { @@ -70,8 +71,6 @@ services = { avahi.enable = true; - keybase.enable = true; - xserver = { enable = true; layout = "us"; diff --git a/config/gaming.nix b/config/gaming.nix index 3f8c157..7699085 100644 --- a/config/gaming.nix +++ b/config/gaming.nix @@ -1,5 +1,6 @@ { config, lib, pkgs, ... }: let + pkgs_unstable = import <nixpkgs_unstable> {}; my_steam = self: super: { steam = super.steam.override { # nativeOnly = true; @@ -10,6 +11,8 @@ let libXxf86vm libXinerama libSM libXv libXaw libXi libXcursor libXcomposite ]; in [ + samba + tdb glib-networking libxkbcommon fluidsynth hidapi mesa libdrm @@ -40,6 +43,7 @@ let libkrb5 nss qt4 + pkgs_unstable.qt514.full ] ++ xorgdeps; }; }; |