renamed some files and directories that had identical filenames. Altered some nixvim plugin options. Set up gpg signing for git commits.

This commit is contained in:
pagedmov
2024-11-10 02:57:08 -05:00
committed by pagedmov
parent 2a1ba18c09
commit 366a0c1175
15 changed files with 41 additions and 4 deletions

23
modules/sys/sysenv/sddm.nix Executable file
View File

@@ -0,0 +1,23 @@
{ pkgs, self, lib, config, ... }: {
options = {
movOpts.sysEnv.sddmConfig.enable =
lib.mkEnableOption "enables custom sddm configuration";
};
config = lib.mkIf config.movOpts.sysEnv.sddmConfig.enable {
environment.systemPackages = [
(pkgs.catppuccin-sddm.override {
flavor = "mocha";
font = "JetBrains Mono Nerd Font";
fontSize = "14";
loginBackground = true;
background = "${self}/assets/wallpapers/dark-waves.jpg";
})
];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
theme = "catppuccin-mocha";
package = pkgs.kdePackages.sddm;
};
};
}