2023-12-20 07:49:22 +00:00
|
|
|
{ pkgs, ... }: {
|
2023-10-09 11:40:25 +01:00
|
|
|
networking = {
|
|
|
|
networkmanager.enable = true;
|
|
|
|
nameservers = [ "9.9.9.9" ];
|
|
|
|
};
|
|
|
|
environment = {
|
2023-12-12 06:31:18 +00:00
|
|
|
systemPackages = with pkgs; [
|
|
|
|
coreutils
|
|
|
|
libsecret
|
|
|
|
gnumake
|
2024-01-12 08:19:20 +00:00
|
|
|
git
|
|
|
|
pinentry
|
2023-12-12 06:31:18 +00:00
|
|
|
zip
|
|
|
|
unzip
|
2023-12-16 22:47:32 +00:00
|
|
|
fd
|
|
|
|
ripgrep
|
2024-01-03 19:19:58 +00:00
|
|
|
rclone
|
2023-12-27 15:44:01 +00:00
|
|
|
dogdns
|
2023-12-16 22:47:32 +00:00
|
|
|
du-dust
|
2023-12-27 10:17:39 +00:00
|
|
|
czkawka
|
|
|
|
ffmpeg
|
2023-12-16 22:47:32 +00:00
|
|
|
nitch
|
2023-12-17 18:32:56 +00:00
|
|
|
bottom
|
2023-12-12 06:31:18 +00:00
|
|
|
];
|
2023-10-09 11:40:25 +01:00
|
|
|
localBinInPath = true;
|
|
|
|
};
|
|
|
|
console.keyMap = "uk";
|
2023-12-17 18:32:56 +00:00
|
|
|
programs.ssh.startAgent = true;
|
2023-10-11 08:28:27 +01:00
|
|
|
services = {
|
|
|
|
upower.enable = true;
|
|
|
|
power-profiles-daemon.enable = true;
|
2023-10-20 22:33:34 +01:00
|
|
|
system76-scheduler = {
|
|
|
|
enable = true;
|
|
|
|
useStockConfig = true;
|
|
|
|
};
|
2023-10-11 08:28:27 +01:00
|
|
|
};
|
2023-10-09 11:40:25 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|