initial configuration of home-manager

This commit is contained in:
Fabian Montero 2022-03-17 02:00:17 -06:00
parent bef8999368
commit a96e5b7e79
3 changed files with 45 additions and 9 deletions

View file

@ -51,12 +51,11 @@
services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd. # quitar esto
users.users.host = {
users.users.fabian = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
extraGroups = [ "wheel" ];
};
users.users.temp = {
isNormalUser = true;
extraGroups = [ "wheel" ];
@ -64,9 +63,6 @@
nixpkgs.config.allowUnfree = true;
users.users.temp.packages = with pkgs; [ firefox jetbrains.pycharm-professional neovim git tdesktop python310 gcc discord xournalpp zoom-us jq zip unzip signal-desktop verilog vscodium pipenv runelite calc units vlc file btrfs-progs ];
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
@ -77,8 +73,7 @@
services.openssh.enable = true;
# NO TOCAR ESTO
system.stateVersion = "21.11"; # Did you read the comment?
system.stateVersion = "21.11"; # No tocar esto
}