summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 11:03:49 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 11:03:49 -0400
commit5f9ae590ed12d7d52385d5bc9767297ca77a6d88 (patch)
treef32fffb0ee8240478b740360f55ca4d65187c15b /flake.nix
parent31c316d19cd974bb81a5d6de62142ff24db1c78e (diff)
renamed helper functions
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/flake.nix b/flake.nix
index 7d9cd64..b6e7a0d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -6,20 +6,20 @@
in {
# NixOS Configurations
nixosConfigurations = {
- "nzxt-desktop" = helper.mkSystem "nzxt-desktop" "x86_64-linux";
- "ideapad-laptop" = helper.mkSystem "ideapad-laptop" "x86_64-linux";
- "thinkpad-laptop" = helper.mkSystem "thinkpad-laptop" "x86_64-linux";
- "prodesk-server" = helper.mkSystem "prodesk-server" "x86_64-linux";
- "steam-deck" = helper.mkSystem "steam-deck" "x86_64-linux";
+ "nzxt-desktop" = helper.mkNixosSystem "nzxt-desktop" "x86_64-linux";
+ "ideapad-laptop" = helper.mkNixosSystem "ideapad-laptop" "x86_64-linux";
+ "thinkpad-laptop" = helper.mkNixosSystem "thinkpad-laptop" "x86_64-linux";
+ "prodesk-server" = helper.mkNixosSystem "prodesk-server" "x86_64-linux";
+ "steam-deck" = helper.mkNixosSystem "steam-deck" "x86_64-linux";
};
# Home Manager Configurations
homeConfigurations = {
- "culsans@nzxt-desktop" = helper.mkHome "culsans" "nzxt-desktop" "x86_64-linux";
- "lucas@ideapad-laptop" = helper.mkHome "lucas" "ideapad-laptop" "x86_64-linux";
- "lucas@thinkpad-laptop" = helper.mkHome "lucas" "thinkpad-laptop" "x86_64-linux";
- "server@prodesk-server" = helper.mkHome "server" "prodesk-server" "x86_64-linux";
- "culsans@steam-deck" = helper.mkHome "culsans" "steam-deck" "x86_64-linux";
+ "culsans@nzxt-desktop" = helper.mkHomeManagerUser "culsans" "nzxt-desktop" "x86_64-linux";
+ "lucas@ideapad-laptop" = helper.mkHomeManagerUser "lucas" "ideapad-laptop" "x86_64-linux";
+ "lucas@thinkpad-laptop" = helper.mkHomeManagerUser "lucas" "thinkpad-laptop" "x86_64-linux";
+ "server@prodesk-server" = helper.mkHomeManagerUser "server" "prodesk-server" "x86_64-linux";
+ "culsans@steam-deck" = helper.mkHomeManagerUser "culsans" "steam-deck" "x86_64-linux";
};
# Packages