feat: replace greetd with sddm

This commit is contained in:
Nydragon 2024-07-27 16:04:15 +02:00
parent 1cbe92da3a
commit d251603549
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 15 additions and 10 deletions

View file

@ -19,18 +19,9 @@
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
services.flatpak.enable = true;
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "${pkgs.greetd.greetd}/bin/agreety --cmd ${pkgs.hyprland}/bin/hyprland";
user = "${username}";
};
default_session = initial_session;
};
};
#: Power Consumption {{{
services.logind = {

View file

@ -1,6 +1,7 @@
{ ... }:
{
imports = [
./sddm.nix
./locale.nix
./networking.nix
./fonts.nix

View file

@ -1,7 +1,20 @@
{ self, pkgs, ... }:
{
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
autoNumlock = true;
theme = "catppuccin-mocha";
package = pkgs.kdePackages.sddm;
};
environment.systemPackages = [
(pkgs.catppuccin-sddm.override {
flavor = "mocha";
font = "Noto Sans";
fontSize = "9";
background = "${self}/assets/wallpapers/nix-flake-pastel.jpg";
loginBackground = true;
})
];
}