This commit is contained in:
doloro
2025-09-23 13:32:16 +01:00
parent 3ad89e10d2
commit ff9bbafe4d
4 changed files with 4 additions and 10 deletions

View File

@@ -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;} ];
};
};
}

View File

@@ -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.

View File

@@ -3,7 +3,7 @@ let
in {
home.packages = [
pkgs.neovim
inputs.neovim-nightly-overlay.packages.${pkgs.system}.default
];
xdg.configFile."nvim" = {
recursive = true;

View File

@@ -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;