diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 10:46:40 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 10:46:40 -0400 |
commit | c51cf01312b92d9fb1a9442fef7114fce060d274 (patch) | |
tree | 5300ca894840b2205400bcf942677e509a0ead4a | |
parent | 1d43f68cc4fbdf47e56094c48277a3cebdd94cd1 (diff) |
no-filesystems only for x
-rwxr-xr-x | install.sh | 5 | ||||
-rw-r--r-- | machines/git/configuration.nix | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -9,6 +9,11 @@ MACHINE="$1" sudo cp -rv * /mnt/config +CONFIG_ARGS="--root /mnt" +if [ $MACHINE = "x" ]; then + CONFIG_ARGS="$CONFIG_ARGS --no-filesystems" +fi + sudo nixos-generate-config --root /mnt --no-filesystems cd /mnt/config diff --git a/machines/git/configuration.nix b/machines/git/configuration.nix index a4970c7..2fa50c8 100644 --- a/machines/git/configuration.nix +++ b/machines/git/configuration.nix @@ -13,6 +13,9 @@ networking.hostName = "git"; + boot.loader.grub.enable = true; + boot.loader.grub.device = "/dev/sda"; + programs.fuse.userAllowOther = true; home-manager = { extraSpecialArgs = { inherit inputs; }; |