wip: dnsc-machine setup
This commit is contained in:
parent
ffe035cc63
commit
2760b06666
2 changed files with 11 additions and 9 deletions
12
flake.nix
12
flake.nix
|
|
@ -40,7 +40,6 @@
|
|||
in
|
||||
{
|
||||
# Custom nixosModules
|
||||
nixosModules.base = import ./modules/base;
|
||||
nixosModules.macos = import ./modules/macos;
|
||||
nixosModules.homebrew = import ./modules/homebrew;
|
||||
nixosModules.aerospace = import ./modules/aerospace;
|
||||
|
|
@ -69,6 +68,17 @@
|
|||
nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
overlays = [
|
||||
self.overlays.default
|
||||
inputs.zellij-switch.overlays.default
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnsupportedSystem = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/dnsc-machine
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue