From ff9bbafe4daf8ab07f4cbb5152648e4450f6003a Mon Sep 17 00:00:00 2001 From: doloro Date: Tue, 23 Sep 2025 13:32:16 +0100 Subject: [PATCH] changes --- nix/flake.nix | 2 +- nix/home.nix | 2 +- nix/modules/neovim/home.nix | 2 +- nix/modules/steam/nixos.nix | 8 +------- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/nix/flake.nix b/nix/flake.nix index 37fed28..518f2dd 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -52,7 +52,7 @@ specialArgs = { inherit inputs system; }; - modules = [ ./configuration.nix inputs.sops-nix.nixosModules.sops inputs.disko.nixosModules.disko {nixpkgs.overlays = overlays;} inputs.stylix.nixosModules.stylix]; + modules = [ ./configuration.nix inputs.sops-nix.nixosModules.sops inputs.disko.nixosModules.disko {nixpkgs.overlays = overlays;} ]; }; }; } diff --git a/nix/home.nix b/nix/home.nix index 52cabae..1b90d90 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -6,7 +6,7 @@ ./modules/quickshell/home.nix ./modules/chromium/home.nix ./modules/neovim/home.nix - ./modules/stylix/home.nix + #./modules/stylix/home.nix ]; # Home Manager needs a bit of information about you and the paths it should # manage. diff --git a/nix/modules/neovim/home.nix b/nix/modules/neovim/home.nix index a680b10..a4f63d1 100644 --- a/nix/modules/neovim/home.nix +++ b/nix/modules/neovim/home.nix @@ -3,7 +3,7 @@ let in { home.packages = [ - pkgs.neovim + inputs.neovim-nightly-overlay.packages.${pkgs.system}.default ]; xdg.configFile."nvim" = { recursive = true; diff --git a/nix/modules/steam/nixos.nix b/nix/modules/steam/nixos.nix index 41b20e2..4059983 100644 --- a/nix/modules/steam/nixos.nix +++ b/nix/modules/steam/nixos.nix @@ -4,14 +4,8 @@ pkgs, ... }: -let - cfg = config.modules.steam; -in { - options = { - modules.steam.enable = lib.mkEnableOption "Steam configuration module"; - }; - config = lib.mkIf cfg.enable { + config = { programs.steam = { enable = true; remotePlay.openFirewall = true;