mirror of https://git.jolheiser.com/dotnix.git
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ pkgs, ... }: {
|
|
imports = [ ./sound.nix ./xserver.nix ];
|
|
|
|
console.colors = [
|
|
"1e1e2e"
|
|
"585b70"
|
|
|
|
"bac2de"
|
|
"a6adc8"
|
|
|
|
"f38ba8"
|
|
"f38ba8"
|
|
|
|
"a6e3a1"
|
|
"a6e3a1"
|
|
|
|
"f9e2af"
|
|
"f9e2af"
|
|
|
|
"89b4fa"
|
|
"89b4fa"
|
|
|
|
"f5c2e7"
|
|
"f5c2e7"
|
|
|
|
"94e2d5"
|
|
"94e2d5"
|
|
];
|
|
|
|
time.timeZone = "America/Chicago";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
i18n.extraLocaleSettings = {
|
|
LC_ADDRESS = "en_US.UTF-8";
|
|
LC_IDENTIFICATION = "en_US.UTF-8";
|
|
LC_MEASUREMENT = "en_US.UTF-8";
|
|
LC_MONETARY = "en_US.UTF-8";
|
|
LC_NAME = "en_US.UTF-8";
|
|
LC_NUMERIC = "en_US.UTF-8";
|
|
LC_PAPER = "en_US.UTF-8";
|
|
LC_TELEPHONE = "en_US.UTF-8";
|
|
LC_TIME = "en_US.UTF-8";
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
nix = {
|
|
gc.automatic = true;
|
|
package = pkgs.nixVersions.nix_2_15;
|
|
settings = {
|
|
experimental-features = [ "flakes" "nix-command" "repl-flake" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
};
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [ podman podman-compose podman-tui ];
|
|
};
|
|
|
|
fonts.fonts = with pkgs;
|
|
[ (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) ];
|
|
}
|