diff options
author | Alan Pearce | 2023-04-13 12:13:58 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-13 12:13:58 +0200 |
commit | c603010a20978ef596965aea911fed98b7261979 (patch) | |
tree | 59f61cc6aac26075166d5e9ee4effaa943387530 | |
parent | 66b709c399053cc91bc767317b8ae835f7666b71 (diff) | |
download | nixfiles-c603010a20978ef596965aea911fed98b7261979.tar.lz nixfiles-c603010a20978ef596965aea911fed98b7261979.tar.zst nixfiles-c603010a20978ef596965aea911fed98b7261979.zip |
add configuration for server
-rw-r--r-- | flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 03b27092..9cdc3e62 100644 --- a/flake.nix +++ b/flake.nix @@ -61,5 +61,9 @@ pkgs = aarch64LinuxPackages; modules = [ ./user/server.nix ]; }; + homeConfigurations."alan@pappel" = home-manager.lib.homeManagerConfiguration { + pkgs = nixosPkgs; + modules = [ ./user/server.nix ]; + }; }; } |