v8k3zzl1rkw25dars9zzpbhxknw1acin

This commit is contained in:
itsscb 2024-05-14 00:51:06 +02:00
parent 239a4fc208
commit 41d7143a6d
2 changed files with 18 additions and 14 deletions

View File

@ -37,24 +37,26 @@ in {
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n = {
defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = { extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8"; LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8"; LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8"; LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8"; LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8"; LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8"; LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8"; LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8"; LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8"; LC_TIME = "de_DE.UTF-8";
};
}; };
services = { services = {
displayManager.sddm = { displayManager.sddm = {
enable = true; enable = true;
}; };
xserver = { xserver = {
enable = true; enable = true;
desktopManager.gnome = { desktopManager.gnome = {
@ -65,6 +67,7 @@ in {
layout = "us"; layout = "us";
variant = ""; variant = "";
}; };
excludePackages = excludePackages =
(with pkgs; [ (with pkgs; [
nano nano
@ -86,6 +89,7 @@ in {
# Enable CUPS to print documents. # Enable CUPS to print documents.
printing.enable = true; printing.enable = true;
}; };
# Enable sound with pipewire. # Enable sound with pipewire.
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;

View File

@ -45,8 +45,8 @@ sudo nixos-rebuild switch &>nixos-switch.log || (cat nixos-switch.log | grep --c
echo -e ": Rebuild successful. Committing changes..." echo -e ": Rebuild successful. Committing changes..."
# Get current generation metadata # Get current generation metadata
current=$(nixos-rebuild list-generations --json | jq '.[0]') # current=$(nix-instantiate --eval -I ./configuration.nix '<nixpkgs/nixos>' -A config.system.build.toplevel.drvPath | grep -ow '(\d|\w){32}')
current=$(nix-instantiate --eval -I ./configuration.nix '<nixpkgs/nixos>' -A config.system.build.toplevel.drvPath | grep -owP '(\d|\w){32}')
echo -e ": $current" echo -e ": $current"
# Commit all changes witih the generation metadata # Commit all changes witih the generation metadata
sudo git commit -am "$current" sudo git commit -am "$current"