added the-most-default configuration

This commit is contained in:
Sebastian Moser
2023-10-31 10:53:47 +00:00
parent a259b0ff3c
commit d0c5a5d905
4 changed files with 229 additions and 0 deletions

View File

@@ -6,12 +6,25 @@
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
firefox.url = "github:nix-community/flake-firefox-nightly";
home-manager = {
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
nix-index-database.url = "github:Mic92/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... }@inputs:
@@ -32,6 +45,18 @@
./hosts/main.nix
];
};
"the-most-default" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
modules = [
./hosts/the-most-default.nix
];
};
};
packages.x86_64-linux = {
#default... TODO
};
};
}