diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:23:58 -0400 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:24:13 -0400 | 
| commit | 57de4ede0cef89c04a3728e4f8c97f67ce771eff (patch) | |
| tree | d183069bc9b8f93f429763ec35e1beb5abd8bc4c /machines/git/configuration.nix | |
| parent | 607c7626001ba1ba4f0b8b4b4b774b508143cab5 (diff) | |
generalize server
Diffstat (limited to 'machines/git/configuration.nix')
| -rw-r--r-- | machines/git/configuration.nix | 32 | 
1 files changed, 0 insertions, 32 deletions
| diff --git a/machines/git/configuration.nix b/machines/git/configuration.nix deleted file mode 100644 index a244c64..0000000 --- a/machines/git/configuration.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ lib, inputs, pkgs, ... }: - -{ -  imports = [ -    ./hardware-configuration.nix -    inputs.home-manager.nixosModules.default -  ] ++ (map (path: ../../modules/${path}) [ -    "core/global.nix" -    "ssh.nix" -    "git/compromyse.nix" -    "git/cgit.nix" -    "git/git.nix" -  ]); - -  networking.hostName = "git"; - -  boot.loader.grub = { -    enable = true; -    forceInstall = true; -    device = "/dev/sda"; -  }; - -  programs.fuse.userAllowOther = true; -  home-manager = { -    extraSpecialArgs = { inherit inputs; }; -    useGlobalPkgs = true; -    useUserPackages = true; -    users = { -      "compromyse" = import ./home.nix; -    }; -  }; -} | 
