2023-07-31 10:55:06 +01:00
|
|
|
{ pkgs, shell, ... }:
|
2023-09-04 08:56:19 +01:00
|
|
|
let flakeURL = "git+https://git.xenia.me.uk/xenia/nixos.git?ref=main";
|
|
|
|
in {
|
2023-06-26 13:23:27 +01:00
|
|
|
nix = {
|
2023-07-31 10:55:06 +01:00
|
|
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
2023-06-26 13:23:27 +01:00
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "daily";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
extraOptions = ''
|
|
|
|
keep-outputs = true
|
|
|
|
keep-derivations = true
|
|
|
|
'';
|
|
|
|
};
|
2023-07-21 11:10:31 +01:00
|
|
|
system.autoUpgrade.flake = flakeURL;
|
2023-07-17 06:37:40 +01:00
|
|
|
environment = {
|
|
|
|
localBinInPath = true;
|
2023-07-31 10:55:06 +01:00
|
|
|
systemPackages = with pkgs; [ distrobox ];
|
2023-09-04 08:56:19 +01:00
|
|
|
shellAliases.nou = ''sudo nixos-rebuild switch --flake "${flakeURL}"'';
|
2023-07-04 07:35:30 +01:00
|
|
|
};
|
2023-07-07 17:25:04 +01:00
|
|
|
networking.networkmanager.enable = true;
|
2023-08-28 12:19:43 +01:00
|
|
|
services = {
|
|
|
|
power-profiles-daemon.enable = true;
|
|
|
|
passSecretService.enable = true;
|
|
|
|
};
|
2023-06-26 13:23:27 +01:00
|
|
|
virtualisation.podman.enable = true;
|
2023-08-05 18:09:44 +01:00
|
|
|
programs = { ${shell}.enable = true; };
|
2023-06-26 13:23:27 +01:00
|
|
|
# Set your time zone.
|
|
|
|
time.timeZone = "Europe/London";
|
2023-07-16 17:35:36 +01:00
|
|
|
i18n = {
|
|
|
|
# Select internationalisation properties.
|
|
|
|
defaultLocale = "en_GB.UTF-8";
|
|
|
|
extraLocaleSettings = {
|
|
|
|
LC_ADDRESS = "en_GB.UTF-8";
|
|
|
|
LC_IDENTIFICATION = "en_GB.UTF-8";
|
|
|
|
LC_MEASUREMENT = "en_GB.UTF-8";
|
|
|
|
LC_MONETARY = "en_GB.UTF-8";
|
|
|
|
LC_NAME = "en_GB.UTF-8";
|
|
|
|
LC_NUMERIC = "en_GB.UTF-8";
|
|
|
|
LC_PAPER = "en_GB.UTF-8";
|
|
|
|
LC_TELEPHONE = "en_GB.UTF-8";
|
|
|
|
LC_TIME = "en_GB.UTF-8";
|
2023-07-13 12:41:00 +01:00
|
|
|
};
|
|
|
|
};
|
2023-06-26 13:23:27 +01:00
|
|
|
}
|