1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 05:26:20 +00:00

update 

This commit is contained in:
azikx 2024-10-23 22:08:52 +09:00
parent 04c3042030
commit 3e85a51223
4 changed files with 19 additions and 14 deletions

View file

@ -3,6 +3,7 @@
enable = true;
settings = {
"org/gnome/desktop/wm/preferences" = { button-layout = ""; };
"org/gnome/desktop/applications/terminal" = { exec = "kitty"; };
};
};
}

View file

@ -1,9 +1 @@
{
imports = [
./dconf.nix
./nwg.nix
./nix.nix
./xdg.nix
# ./env.nix
];
}
{ imports = [ ./dconf.nix ./nwg.nix ./nix.nix ./xdg.nix ./env.nix ]; }

View file

@ -1,5 +1,10 @@
{ ... }: {
home.sessionVariables = {
TERM = "kitty";
TERMINAL = "kitty";
MOZ_ENABLE_WAYLAND = "1";
MICRO_TRUECOLOR = "1";
QT_QPA_PLATFORMTHEME = "qt5ct";
};

View file

@ -1,8 +1,5 @@
{ ... }: {
security = {
sudo = { # FUCKING CRAP
enable = true;
};
doas = { # VERY TOP
enable = true;
wheelNeedsPassword = true;
@ -16,8 +13,18 @@
permit nopass dragora as root cmd tee
'';
};
pam = { # SOMTHING WITH FPRINT
services = { swaylock.fprintAuth = true; };
sudo-rs = {
enable = true;
wheelNeedsPassword = true;
extraRules = [{
groups = [ "sudo" ];
commands = [ "ALL" ];
}
# {
# users = [ "megamozg" ];
# commands = [ "light" "tee" ];
# }
];
};
polkit = { enable = true; };
};