From 7cf998c8b8837834b08e79ae3d08e8e4d32f096c Mon Sep 17 00:00:00 2001 From: zackartz Date: Sat, 27 Apr 2024 22:59:38 -0400 Subject: [PATCH] remove tmp file --- hosts/vm/configuration.nix | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 hosts/vm/configuration.nix diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix deleted file mode 100644 index a8728f4..0000000 --- a/hosts/vm/configuration.nix +++ /dev/null @@ -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"; - }; - }; - }; -}