nixos/system/default.nix

91 lines
1.8 KiB
Nix

{pkgs, ...}: {
imports = [./registry.nix ./stylix.nix];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking = {
networkmanager.enable = true;
firewall.enable = true;
nameservers = ["9.9.9.9"];
};
environment = {
systemPackages = with pkgs; [
coreutils
libsecret
gnumake
git
git-sync
pinentry
zip
unzip
fd
ripgrep
rclone
wireguard-tools
dogdns
du-dust
ffmpeg
nitch
bottom
];
localBinInPath = true;
};
console.keyMap = "uk";
programs = {
command-not-found.enable = false;
ssh.startAgent = true;
nano = {
enable = true;
syntaxHighlight = true;
nanorc = ''
set nowrap
set tabstospaces
set tabsize 2
'';
};
};
services = {
passSecretService.enable = true;
upower.enable = true;
power-profiles-daemon.enable = true;
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;
};
};
fonts = {
packages = with pkgs; [
(nerdfonts.override {
fonts = [
"VictorMono" # Just for fun
"HeavyData" # Just for fun
"NerdFontsSymbolsOnly" # For other tools
];
})
emacs-all-the-icons-fonts
weather-icons
];
fontconfig.enable = true;
};
}