mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
saffron updates
This commit is contained in:
parent
563aadecef
commit
007d360b17
3 changed files with 54 additions and 30 deletions
|
|
@ -145,6 +145,24 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
|
||||
saffron = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
determinate.nixosModules.default
|
||||
./machines/saffron/configuration.nix
|
||||
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
|
||||
home-manager.backupFileExtension = "bak";
|
||||
home-manager.extraSpecialArgs = {inherit inputs outputs nixosModules homeModules darwinModules;};
|
||||
home-manager.users.tyler = import ./machines/saffron/home.nix;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
darwinConfigurations."MacBook-Pro" = darwin.lib.darwinSystem {
|
||||
|
|
@ -170,13 +188,5 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
"tyler@saffron" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = allPkgs."x86_64-linux";
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
modules = [./machines/saffron/home.nix];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue