nix-config/hosts/t490/configuration.nix

55 lines
785 B
Nix
Raw Normal View History

2025-04-09 19:43:48 +01:00
{ pkgs, ... }:
2025-03-21 15:01:39 +00:00
{
imports = [
./hardware-configuration.nix
./hardware.nix
./programs.nix
./secrets.nix
./services
./users.nix
2025-04-06 01:03:53 +01:00
../../modules/mixins/common
2025-03-21 15:01:39 +00:00
../../users/opdavies
];
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi = {
canTouchEfiVariables = true;
};
};
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
networking.networkmanager.enable = true;
security = {
polkit.enable = true;
rtkit.enable = true;
};
environment.systemPackages = with pkgs; [
gtypist
pam_gnupg
sxiv
ttyper
yt-dlp
];
zramSwap.enable = true;
networking.hosts = {
"192.168.1.116" = [ "nixedo" ];
};
}