mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
fmt
This commit is contained in:
parent
562329f49a
commit
417696048c
3 changed files with 9 additions and 8 deletions
|
@ -26,8 +26,8 @@
|
|||
./modules/environment.nix
|
||||
];
|
||||
specialArgs = { inherit inputs; };
|
||||
};
|
||||
algiz = inputs.nixpkgs.lib.nixosSystem {
|
||||
};
|
||||
algiz = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/algiz/configuration.nix
|
||||
|
@ -36,6 +36,6 @@
|
|||
];
|
||||
specialArgs = { inherit inputs; };
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
networking.hostName = "algiz";
|
||||
networking.hostName = "algiz";
|
||||
time.timeZone = "America/Chicago";
|
||||
programs.zsh.enable = true;
|
||||
virtualisation.docker.enable = true;
|
||||
|
@ -92,9 +92,9 @@
|
|||
boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/eb6cbf1e-e4a7-4312-a1af-4f78ad9cf138";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/eb6cbf1e-e4a7-4312-a1af-4f78ad9cf138";
|
||||
fsType = "btrfs";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue