forked from stitchy/dotfiles
flake stuff
This commit is contained in:
parent
d8d4d31d2b
commit
91db99454a
1 changed files with 18 additions and 0 deletions
18
flake.nix
18
flake.nix
|
@ -12,6 +12,24 @@
|
||||||
} : {
|
} : {
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
malachite = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
specialArgs = { inherit inputs; };
|
||||||
|
modules = [
|
||||||
|
|
||||||
|
./configuration.nix
|
||||||
|
./hosts/malachite/default.nix
|
||||||
|
./users/stitchynyan/default.nix
|
||||||
|
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.stitchynyan = import ./users/stitchynyan/home.nix;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
lappy = nixpkgs.lib.nixosSystem {
|
lappy = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
|
|
Loading…
Reference in a new issue