mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 11:16:11 +01:00
all pckgs sync
This commit is contained in:
@@ -1,11 +1,20 @@
|
||||
{ inputs, username, hostname, ... }:
|
||||
{ inputs, username, hostname, pkgs, ... }:
|
||||
{
|
||||
imports = [ inputs.home-manager.nixosModules.home-manager ];
|
||||
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
description = "${username}";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"docker"
|
||||
"games"
|
||||
"dialout"
|
||||
"libvirtd"
|
||||
];
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
|
||||
Reference in New Issue
Block a user