diff --git a/pkgs/astronaut-sddm-theme/default.nix b/pkgs/astronaut-sddm-theme/default.nix new file mode 100644 index 0000000..ac507ca --- /dev/null +++ b/pkgs/astronaut-sddm-theme/default.nix @@ -0,0 +1,19 @@ +{ + sources, + qtgraphicaleffects, + qtmultimedia, + qtquickcontrols, + phonon, + phonon-backend-gstreamer, + gst_all_1, + mkDerivation, +}: +mkDerivation { + inherit (sources.astronaut-sddm-theme) src pname version; + propagatedUserEnvPkgs = [qtgraphicaleffects qtquickcontrols2 qtsvg sddm]; + installPhase = '' + mkdir -p $out/share/sddm/themes + cp -r ./. $out/share/sddm/themes/astronaut-sddm-theme + #cp ${./theme.conf} $out/share/sddm/themes/astronaut-sddm-theme/theme.conf + ''; +} diff --git a/pkgs/default.nix b/pkgs/default.nix index a81078c..6628067 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -57,5 +57,5 @@ in { stdenv = prev.clangStdenv; gtk3Support = true; }; - mySddmTheme = prev.plasma5Packages.callPackage ./aerial-sddm-theme {inherit sources;}; + mySddmTheme = prev.plasma5Packages.callPackage ./astronaut-sddm-theme {inherit sources;}; } diff --git a/pkgs/nvfetcher.toml b/pkgs/nvfetcher.toml index 8f91efe..ee82642 100644 --- a/pkgs/nvfetcher.toml +++ b/pkgs/nvfetcher.toml @@ -27,6 +27,10 @@ fetch.github = "catppuccin/spicetify" src.git = "https://github.com/replaycoding/aerial-sddm-theme" fetch.github = "replaycoding/aerial-sddm-theme" +[aerial-sddm-theme] +src.git = "https://github.com/Keyitdev/sddm-astronaut-theme" +fetch.github = "Keyitdev/sddm-astronaut-theme" + [copilot-vim] src.git = "https://github.com/github/copilot.vim" fetch.github = "github/copilot.vim" diff --git a/sys/generic.nix b/sys/generic.nix index 9b18bb1..a498411 100644 --- a/sys/generic.nix +++ b/sys/generic.nix @@ -140,4 +140,8 @@ in { environment.pathsToLink = [ "/share/zsh" ]; + + fonts.fonts = [ + pkgs.roboto-mono + ]; } diff --git a/sys/nix/configuration.nix b/sys/nix/configuration.nix index 3f9bee2..b44544b 100644 --- a/sys/nix/configuration.nix +++ b/sys/nix/configuration.nix @@ -85,7 +85,7 @@ displayManager = { sddm = { enable = true; - theme = "aerial-sddm-theme"; + theme = "sddm-astronaut-theme"; }; defaultSession = "hyprland"; };