remove tmp file
This commit is contained in:
parent
824b53086f
commit
7cf998c8b8
1 changed files with 0 additions and 38 deletions
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
../common/default.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
||||||
users.users.zack = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "zack";
|
|
||||||
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "plugdev"];
|
|
||||||
shell = pkgs.zsh;
|
|
||||||
packages = with pkgs; [
|
|
||||||
firefox
|
|
||||||
kate
|
|
||||||
rio
|
|
||||||
telegram-desktop
|
|
||||||
kitty
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager = {
|
|
||||||
extraSpecialArgs = {inherit inputs;};
|
|
||||||
users = {
|
|
||||||
"zack" = {
|
|
||||||
imports = [../../modules/home-manager/zack.nix];
|
|
||||||
_module.args.theme = import ../../core/theme.nix;
|
|
||||||
|
|
||||||
home.username = "zack";
|
|
||||||
home.homeDirectory = "/home/zack";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue