feat(server): Remove server import from home.nix

This commit is contained in:
uttarayan21
2024-11-05 18:54:10 +05:30
parent e2b43c3090
commit fb62375c4f
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ build_darwin:
nix run nix-darwin -- build --flake . nix run nix-darwin -- build --flake .
home: home:
nix --extra-experimental-features "nix-command flakes" run home-manager/master -- switch --flake . nix --extra-experimental-features "nix-command flakes" run home-manager/master -- switch --flake .#mirai -b backup
nixos: nixos:
sudo nixos-rebuild switch --flake . sudo nixos-rebuild switch --flake .

View File

@@ -49,7 +49,8 @@ in {
] ]
++ lib.optionals device.isLinux [../linux] ++ lib.optionals device.isLinux [../linux]
# ++ lib.optionals.device.isMac [../macos] # ++ lib.optionals.device.isMac [../macos]
++ lib.optionals device.isServer [../server]; # ++ lib.optionals device.isServer [../server];
;
home.packages = with pkgs; home.packages = with pkgs;
[ [

View File

@@ -120,7 +120,6 @@
user = "fs0c131y"; user = "fs0c131y";
hasGui = false; # Don't wan't to run GUI apps on a headless server hasGui = false; # Don't wan't to run GUI apps on a headless server
isServer = true; isServer = true;
live = true;
} }
{ {
name = "ryu"; name = "ryu";