diff --git a/hosts/chmura/configuration.nix b/hosts/chmura/configuration.nix index 0839aad..e979c53 100644 --- a/hosts/chmura/configuration.nix +++ b/hosts/chmura/configuration.nix @@ -24,16 +24,24 @@ programs.zsh.enable = true; - users.users.jacek = { + users.users.chmura = { isNormalUser = true; - extraGroups = ["wheel" "networkmanager"]; + extraGroups = ["wheel"]; shell = pkgs.zsh; + packages = with pkgs; [ + curl + wget + neovim + neofetch + git + wireguard-tools + ]; }; environment = { shells = with pkgs; [zsh]; pathsToLink = [ "/share/zsh" ]; - sessionVariables = rec { + sessionVariables = { EDITOR = "nvim"; }; }; diff --git a/hosts/niksos/configuration.nix b/hosts/niksos/configuration.nix index 42c3747..cb29d7b 100644 --- a/hosts/niksos/configuration.nix +++ b/hosts/niksos/configuration.nix @@ -17,7 +17,6 @@ in { nixpkgs.config.allowUnfree = true; - # Use the GRUB 2 boot loader. boot.loader.grub.enable = true; boot.loader.grub.device = "/dev/sda"; @@ -26,9 +25,6 @@ in time.timeZone = "Europe/Warsaw"; - # Enable the X11 windowing system. - # services.xserver.enable = true; - nix.settings = { experimental-features = [ "flakes"