mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 05:26:20 +00:00
update
This commit is contained in:
parent
04c3042030
commit
3e85a51223
|
@ -3,6 +3,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/wm/preferences" = { button-layout = ""; };
|
||||
"org/gnome/desktop/applications/terminal" = { exec = "kitty"; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 ]; }
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
{ ... }: {
|
||||
home.sessionVariables = {
|
||||
TERM = "kitty";
|
||||
TERMINAL = "kitty";
|
||||
|
||||
MOZ_ENABLE_WAYLAND = "1";
|
||||
|
||||
MICRO_TRUECOLOR = "1";
|
||||
QT_QPA_PLATFORMTHEME = "qt5ct";
|
||||
};
|
||||
|
|
|
@ -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; };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue