1
0

Compare commits

..

No commits in common. "e413204215415f6cf1b6de2868a76accccaa87ab" and "2970a7d892394510814731609de55f19518511e3" have entirely different histories.

4 changed files with 0 additions and 27 deletions

View File

@ -7,7 +7,6 @@
./gnome.nix
./inputs.nix
./networking.nix
./polkit.nix
./power.nix
./printing.nix
./ssh.nix

View File

@ -1,7 +0,0 @@
{ ... }:
{
security.polkit.enable = true;
}

View File

@ -19,21 +19,6 @@
services.pcscd.enable = true;
# pcscd sometimes breaks and seem to need a manual restart
# so we allow users to restart that service themself
security.polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
if (
action.id == "org.freedesktop.systemd1.manage-units"
&& action.lookup("unit") == "pcscd.service"
&& action.lookup("verb") == "restart"
&& subject.isInGroup("users")
) {
return polkit.Result.YES;
}
});
'';
services.udev.packages = with pkgs; [
yubikey-personalization
];

View File

@ -3,9 +3,7 @@
{
users.users.clerie = {
isNormalUser = true;
group = "clerie";
extraGroups = [
"users"
"wheel"
"dialout"
];
@ -15,6 +13,4 @@
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnUBblmmVoMMBftn4EnwnzqR12m9zill51LpO124hHb10K2rqxNoq8tYSc2pMkV/3briZovffpe5SzB+m2MnXbtOBstIEXkrPZQ78vaZ/nLh7+eWg30lCmMPwjf2wIjlTXkcbxbsi7FbPW7FsolGkU/0mqGhqK1Xft/g7SnCXIoGPSSrHMXEv5dPPofCa1Z0Un+98wQTVfOSKek6TnIsfLbG01UFQVkN7afE4dqSmMiWwEm2PK9l+OiBA2/QzDpbtu9wsfTol4c192vFEWR9crB2YZ1JlMbjVWHjYmB7NFsS0A6lUOikss0Y+LUWS2/QuM/kqybSo4rasZMAIazM6D clerie"
];
};
users.groups.clerie = {};
}