What a clusterfuck
This commit is contained in:
parent
91f88b8bb2
commit
f29273be22
221 changed files with 779 additions and 956 deletions
35
modules/system/default.nix
Normal file
35
modules/system/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ outputs, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./accounts
|
||||
./modules/networking
|
||||
./modules/overlays
|
||||
./programs/git
|
||||
./services/garbage-collection
|
||||
];
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
experimental-features = "nix-command flakes";
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 1w";
|
||||
};
|
||||
};
|
||||
|
||||
time.timeZone = outputs.secrets.timeZone;
|
||||
|
||||
programs = {
|
||||
zsh.enable = true;
|
||||
nano.enable = false;
|
||||
};
|
||||
|
||||
documentation = {
|
||||
nixos.enable = false;
|
||||
info.enable = false;
|
||||
};
|
||||
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue