resuming system configuration
This commit is contained in:
@@ -53,6 +53,7 @@
|
||||
# wayland.windowManager.river.enable = true;
|
||||
imports = [
|
||||
../packages/alacritty/alacritty.nix
|
||||
../packages/crawl/crawl.nix
|
||||
../packages/direnv/direnv.nix
|
||||
../packages/fish/fish.nix
|
||||
../packages/fuzzel/fuzzel.nix
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
{
|
||||
i18n = {
|
||||
defaultLocale = "${locale}";
|
||||
LC_ADRESS = "${locale}";
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "${locale}";
|
||||
LC_IDENTIFICATION = "${locale}";
|
||||
LC_MEASUREMENT = "${locale}";
|
||||
LC_MONETARY = "${locale}";
|
||||
@@ -13,4 +14,5 @@
|
||||
LC_TELEPHONE = "${locale}";
|
||||
LC_TIME = "${locale}";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
16
system/packages/sddm/andromeda.nix
Normal file
16
system/packages/sddm/andromeda.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -5,4 +5,7 @@
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
(callPackage ./andromeda.nix)
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user