diff --git a/home-manager/features/steam.nix b/home-manager/features/steam.nix deleted file mode 100644 index f33529d..0000000 --- a/home-manager/features/steam.nix +++ /dev/null @@ -1,3 +0,0 @@ -{ ... }: { - programs.steam.enable = true; -} diff --git a/nixos/features/steam.nix b/nixos/features/steam.nix new file mode 100644 index 0000000..0baa203 --- /dev/null +++ b/nixos/features/steam.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.steam = { + enable = true; + }; +} diff --git a/nixos/hosts/aerial/default.nix b/nixos/hosts/aerial/default.nix index ff1b38f..3e3364d 100644 --- a/nixos/hosts/aerial/default.nix +++ b/nixos/hosts/aerial/default.nix @@ -7,6 +7,7 @@ ../../features/tailscale.nix ../../features/sound ../../features/nvidia.nix + ../../features/steam.nix ]; home-manager.users.noe = import ../../../home-manager/noe/hosts/aerial.nix;