mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
changes
This commit is contained in:
parent
ff5a0fe6a3
commit
929dbf8c43
16 changed files with 74 additions and 61 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
programs.home-manager.enable = true;
|
||||
programs.bash.shellAliases = {
|
||||
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#desktop";
|
||||
nixup = "sudo nixos-rebuild switch --flake ${config.user.nixosDir}/.#desktop";
|
||||
};
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
|
|
@ -22,8 +22,11 @@
|
|||
user = {
|
||||
bash.enable = true;
|
||||
git.enable = true;
|
||||
gpg.enable = true;
|
||||
security.enable = true;
|
||||
|
||||
security = {
|
||||
enable = true;
|
||||
gpg.enable = true;
|
||||
};
|
||||
|
||||
utils = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
${config.user.name} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = config.user.groups
|
||||
++ [ "video" "audio" "kvm" "libvirtd" "docker" ];
|
||||
openssh.authorizedKeys.keys = config.user.sshKeys.key2;
|
||||
++ [ "video" "audio" "kvm" "libvirtd" ];
|
||||
openssh.authorizedKeys.keys = [ "${config.user.sshKeys.key2}" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue