Now tracking Athena
This commit is contained in:
31
flake.nix
31
flake.nix
@@ -80,7 +80,7 @@
|
||||
{ nixpkgs.overlays = overlays; }
|
||||
disko.nixosModules.disko
|
||||
sops-nix.nixosModules.sops
|
||||
./modules/hardware-configuration.nix
|
||||
./modules/hardware-configuration-titan.nix
|
||||
./modules/configuration-server.nix
|
||||
home-manager.nixosModules.home-manager {
|
||||
# home-manager.useGlobalPkgs = true;
|
||||
@@ -102,5 +102,34 @@
|
||||
}
|
||||
];
|
||||
};
|
||||
nixosConfigurations.Athena = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit overlays; };
|
||||
modules = [
|
||||
{ nixpkgs.overlays = overlays; }
|
||||
disko.nixosModules.disko
|
||||
sops-nix.nixosModules.sops
|
||||
./modules/hardware-configuration-athena.nix
|
||||
./modules/configuration-Athena.nix
|
||||
home-manager.nixosModules.home-manager {
|
||||
# home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.sharedModules = [ {nixpkgs.overlays = overlays;} ];
|
||||
home-manager.users.th3r00t = {
|
||||
imports = [
|
||||
./home-server.nix
|
||||
nix-index-database.homeModules.nix-index
|
||||
];
|
||||
home.file.".config/nvim" = {
|
||||
source = inputs.neovim-config;
|
||||
recursive = true;
|
||||
executable = true;
|
||||
};
|
||||
};
|
||||
# home-manager.users.th3r00t = import ./home.nix;
|
||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user