added the-most-default configuration
This commit is contained in:
25
flake.nix
25
flake.nix
@@ -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
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user