This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/simon.nix

19 lines
336 B
Nix
Raw Permalink Normal View History

2024-03-24 16:15:15 +01:00
{ config, pkgs, ... }: {
# enable zsh
programs.zsh.enable = true;
# user simon
users.users.simon = {
isNormalUser = true;
description = "Simon Cornet";
initialPassword = "changeme";
shell = pkgs.zsh;
extraGroups = [
"libvirtd"
"networkmanager"
"wheel"
];
2024-03-24 16:15:15 +01:00
};
}