From 8af064577f5808d0194be08a291fe1e768baf3cf Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Mon, 25 Dec 2023 18:51:11 -0800 Subject: [PATCH] removed old file --- hosts/default.nix | 87 ----------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 hosts/default.nix diff --git a/hosts/default.nix b/hosts/default.nix deleted file mode 100644 index 26b321a..0000000 --- a/hosts/default.nix +++ /dev/null @@ -1,87 +0,0 @@ -{ lib, inputs, nixpkgs, home-manager, user, kmonad, ... }: - -let - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - }; - lib = nixpkgs.lib; -in { - NicksNixLaptop = lib.nixosSystem { - inherit system; - specialArgs = { inherit user; }; - modules = [ - ./laptop - ./configuration.nix - ../modules/plasma_desktop.nix - ../modules/kmonad.nix - { - networking.hostName = "NicksNixLaptop"; - } - kmonad.nixosModules.default - home-manager.nixosModules.home-manager { - home-manager = { - useGlobalPkgs = true; - useUserPackages = true; - extraSpecialArgs = { inherit user; }; - users.${user} = { - imports = [ - ../users/${user}.nix - ../modules/emacs.nix - ../modules/git.nix - ../modules/fusuma.nix - ../modules/vim.nix - ../modules/wezterm.nix - ../modules/xdg.nix - ../modules/zsh.nix - ]; - }; - }; - } - ]; - }; - - NixsServer = lib.nixosSystem { - inherit system; - specialArgs = { inherit user; }; - modules = [ - ./nixsserver - ./nixsserver/configuration.nix - { - networking.hostName = "NicksServer"; - } - ]; - }; - - NicksNixVMBox = lib.nixosSystem { - inherit system; - specialArgs = { inherit user; }; - modules = [ - ./virtualbox - ./configuration.nix - ../modules/plasma_desktop.nix - ../modules/kmonad.nix - { - networking.hostName = "NicksNixVMBox"; - } - kmonad.nixosModules.default - home-manager.nixosModules.home-manager { - home-manager = { - useGlobalPkgs = true; - useUserPackages = true; - extraSpecialArgs = { inherit user; }; - users.${user} = { - imports = [ - ./home.nix - ../modules/git.nix - ../modules/urxvt.nix - ../modules/vim.nix - ../modules/zsh.nix - ]; - }; - }; - } - ]; - }; -}