resuming system configuration

This commit is contained in:
2025-08-31 21:52:27 -06:00
parent 23e168431d
commit 368f5d9f46
4 changed files with 31 additions and 9 deletions

View File

@@ -53,6 +53,7 @@
# wayland.windowManager.river.enable = true; # wayland.windowManager.river.enable = true;
imports = [ imports = [
../packages/alacritty/alacritty.nix ../packages/alacritty/alacritty.nix
../packages/crawl/crawl.nix
../packages/direnv/direnv.nix ../packages/direnv/direnv.nix
../packages/fish/fish.nix ../packages/fish/fish.nix
../packages/fuzzel/fuzzel.nix ../packages/fuzzel/fuzzel.nix

View File

@@ -3,14 +3,16 @@
{ {
i18n = { i18n = {
defaultLocale = "${locale}"; defaultLocale = "${locale}";
LC_ADRESS = "${locale}"; extraLocaleSettings = {
LC_IDENTIFICATION = "${locale}"; LC_ADDRESS = "${locale}";
LC_MEASUREMENT = "${locale}"; LC_IDENTIFICATION = "${locale}";
LC_MONETARY = "${locale}"; LC_MEASUREMENT = "${locale}";
LC_NAME = "${locale}"; LC_MONETARY = "${locale}";
LC_NUMERIC = "${locale}"; LC_NAME = "${locale}";
LC_PAPER = "${locale}"; LC_NUMERIC = "${locale}";
LC_TELEPHONE = "${locale}"; LC_PAPER = "${locale}";
LC_TIME = "${locale}"; LC_TELEPHONE = "${locale}";
LC_TIME = "${locale}";
};
}; };
} }

View File

@@ -0,0 +1,16 @@
{stdenv, fetchFromGithub, ...}:
{
sddm-andromeda = stdenv.mkDerivation rec {
pname = "sddm-andromeda-theme";
dontBuild = true;
installPhase = ''
mkdir -p $out/share/sddm/themes
cp -aR $src $out/share/sddm/themes/andromeda
'';
src = fetchFromGithub {
owner = "EliverLara";
repo = "Andromeda-KDE";
};
};
}

View File

@@ -5,4 +5,7 @@
enable = true; enable = true;
wayland.enable = true; wayland.enable = true;
}; };
environment.systemPackages = with pkgs; [
(callPackage ./andromeda.nix)
];
} }