refactor works on lio host

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-03-18 11:53:54 -05:00
parent 1d9c4beaf3
commit f0c096edec
73 changed files with 2214 additions and 1091 deletions

View file

@ -53,10 +53,17 @@ in
};
enableSleep = lib.mkEnableOption (lib.mdDoc "Enable auto sleeping");
};
imports = [
./shell/common.nix
./fonts.nix
./tty_caps_esc.nix
];
config = {
# name this computer
networking = {
hostName = top_cfg.systemName;
nftables.enable = true;
firewall.enable = true;
};
# Enable flakes
@ -115,6 +122,10 @@ in
) "!include ${config.age.secrets.github_read_token.path}"}
'';
# Enable zsh
programs.zsh.enable = true;
environment.pathsToLink = [ "/share/zsh" ];
# nix helper
programs.nh = {
enable = true;