nixos/system/default.nix

54 lines
1.1 KiB
Nix
Raw Normal View History

{ pkgs, ... }: {
networking = {
networkmanager.enable = true;
nameservers = [ "9.9.9.9" ];
};
environment = {
systemPackages = with pkgs; [
coreutils
libsecret
gnumake
gitFull
zip
unzip
fd
ripgrep
2023-12-27 15:44:01 +00:00
dogdns
du-dust
czkawka
ffmpeg
nitch
2023-12-17 18:32:56 +00:00
bottom
];
localBinInPath = true;
};
console.keyMap = "uk";
2023-12-17 18:32:56 +00:00
programs.ssh.startAgent = true;
services = {
upower.enable = true;
power-profiles-daemon.enable = true;
2023-10-20 22:33:34 +01:00
system76-scheduler = {
enable = true;
useStockConfig = true;
};
};
virtualisation.podman.enable = true;
time.timeZone = "Europe/London";
i18n = let locale = "en_GB.UTF-8";
in {
# Select internationalisation properties.
defaultLocale = locale;
extraLocaleSettings = {
LC_ADDRESS = locale;
LC_IDENTIFICATION = locale;
LC_MEASUREMENT = locale;
LC_MONETARY = locale;
LC_NAME = locale;
LC_NUMERIC = locale;
LC_PAPER = locale;
LC_TELEPHONE = locale;
LC_TIME = locale;
};
};
}