diff options
Diffstat (limited to 'hosts/desktop')
| -rw-r--r-- | hosts/desktop/configuration.nix | 74 | ||||
| -rw-r--r-- | hosts/desktop/home.nix | 2 |
2 files changed, 36 insertions, 40 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 2458dec..2bc4826 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -1,8 +1,7 @@ { config, username, - pkgs-stable, - pkgs, + pkgs-master, ... }: { @@ -53,7 +52,7 @@ security = { enable = true; sandboxing.enable = true; - antivirus.enable = true; + # antivirus.enable = true; }; ssh.enable = true; tailscale.enable = true; @@ -97,9 +96,6 @@ }; }; - environment.systemPackages = with pkgs; [ - openmw - ]; boot = { kernelModules = [ "nct6687" @@ -111,40 +107,38 @@ ]; }; - boot.kernelParams = [ - "split_lock_detect=off" - "amdgpu.ppfeaturemask=0xffffffff" - "preempt=full" + environment.systemPackages = [ + pkgs-master.simplex-chat-desktop ]; - services.netbox = { - enable = true; - package = pkgs-stable.netbox; - secretKeyFile = "/var/lib/netbox/key"; - apiTokenPeppersFile = "/var/lib/netbox/api-pepper"; - - settings = { - ALLOWED_HOSTS = [ - "localhost" - "127.0.0.1" - "[::1]" - ]; - }; - }; - - services.nginx = { - enable = true; - user = "netbox"; - recommendedProxySettings = true; - virtualHosts.localhost = { - locations = { - "/" = { - proxyPass = "http://[::1]:8001"; - }; - "/static/" = { - alias = "${config.services.netbox.dataDir}/static/"; - }; - }; - }; - }; + # services.netbox = { + # enable = true; + # package = pkgs-stable.netbox; + # secretKeyFile = "/var/lib/netbox/key"; + # apiTokenPeppersFile = "/var/lib/netbox/api-pepper"; + # + # settings = { + # ALLOWED_HOSTS = [ + # "localhost" + # "127.0.0.1" + # "[::1]" + # ]; + # }; + # }; + # + # services.nginx = { + # enable = true; + # user = "netbox"; + # recommendedProxySettings = true; + # virtualHosts.localhost = { + # locations = { + # "/" = { + # proxyPass = "http://[::1]:8001"; + # }; + # "/static/" = { + # alias = "${config.services.netbox.dataDir}/static/"; + # }; + # }; + # }; + # }; } diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index 58714f0..da433d6 100644 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -90,6 +90,8 @@ }; home.packages = with pkgs; [ + tmux + gimp stow element-desktop ]; |
