diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 12:18:34 -0400 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 12:18:34 -0400 | 
| commit | 00778122cd1a09d3aa7be4aefa070bec3f81012c (patch) | |
| tree | a7816565419b22342620a533cd69cc35034c753c /machines/git | |
| parent | 08f021fb33ed00b411ad7382bb0fa68554ebd13d (diff) | |
ext4->btrfs
Diffstat (limited to 'machines/git')
| -rw-r--r-- | machines/git/configuration.nix | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/machines/git/configuration.nix b/machines/git/configuration.nix index 2fa50c8..25c4864 100644 --- a/machines/git/configuration.nix +++ b/machines/git/configuration.nix @@ -13,8 +13,12 @@    networking.hostName = "git"; -  boot.loader.grub.enable = true; -  boot.loader.grub.device = "/dev/sda"; +  boot.loader.grub = { +    enable = true; +    version = 2; +    forceInstall = true; +    device = "/dev/sda"; +  };    programs.fuse.userAllowOther = true;    home-manager = { | 
