mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
bandaid solution for an missing home-dir
This commit is contained in:
parent
be437725c7
commit
cd8a862b4e
2 changed files with 14 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
||||||
kmonad.nixosModules.default
|
kmonad.nixosModules.default
|
||||||
./hosts/laptop
|
./hosts/laptop
|
||||||
./hosts/configuration.nix
|
./hosts/configuration.nix
|
||||||
|
./users/nicholix_configuration.nix
|
||||||
./modules/kmonad.nix
|
./modules/kmonad.nix
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
13
users/nicholix_configuration.nix
Normal file
13
users/nicholix_configuration.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users.nicholix = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [ "wheel" "video" "audio" "networkmanager" "lp" "scanner" "input" "uinput" ];
|
||||||
|
shell = pkgs.zsh;
|
||||||
|
password = "password";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue