Compare commits

...

2 Commits

Author SHA1 Message Date
Johannes Hendrik Gerard van der Weide ee7e69700d Merge branch 'Main' of git.saragerretsen.nl:Hertog/HermitCollective.nix into Main
I forgot to pull :(
2024-03-06 10:49:44 +01:00
Johannes Hendrik Gerard van der Weide 0a5e91f94b oh yeah it should be bootable whoops 2024-03-06 10:49:17 +01:00
1 changed files with 23 additions and 0 deletions

View File

@ -1,4 +1,27 @@
{
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
nix = {
settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true;
};
};
nixpkgs.config = {
allowUnfree = true;
};
networking = {
hostName = "HermitCollective";
domain = "hermitcollective.net";