Compare commits

...

3 commits

Author SHA1 Message Date
0c00ca07ad
Add gpg configuration to git 2024-09-18 23:02:29 +03:00
c94dbb7c33
Add plymouth 2024-09-18 23:01:43 +03:00
ed2b07f6a2 Move some packages to be user specific 2024-09-18 21:35:58 +03:00
2 changed files with 42 additions and 3 deletions

View file

@ -35,8 +35,31 @@
enable = true; enable = true;
efiSupport = true; efiSupport = true;
device = "nodev"; device = "nodev";
timeoutStyle = "hidden";
}; };
}; };
initrd = {
systemd.enable = true;
verbose = false;
};
consoleLogLevel = 0;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
plymouth = {
enable = true;
theme = "bgrt";
};
}; };
services = { services = {
@ -75,10 +98,7 @@
shells = [ pkgs.zsh ]; shells = [ pkgs.zsh ];
systemPackages = with pkgs; systemPackages = with pkgs;
[ [
neovim
telegram-desktop telegram-desktop
usbutils
wl-clipboard
]; ];
}; };
} }

View file

@ -17,6 +17,8 @@
pass pass
ripgrep ripgrep
tree-sitter tree-sitter
usbutils
wl-clipboard
yarn yarn
]; ];
@ -107,6 +109,23 @@
enable = true; enable = true;
userName = "Marko Korhonen"; userName = "Marko Korhonen";
userEmail = "marko@korhonen.cc"; userEmail = "marko@korhonen.cc";
extraConfig = {
user.signingkey = "F2B9F713E7ED627336DD85E444FA3F28CD931BB0";
commit = {
gpgsign = true;
signoff = true;
};
tag = {
gpgsign = true;
signoff = true;
};
merge = {
prompt = false;
conflictstyle = "diff3";
tool = "nvim";
};
};
}; };
}; };
} }