mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 06:54:49 +02:00
added buldak
This commit is contained in:
parent
c2a494aacd
commit
43733e4a4a
3 changed files with 170 additions and 0 deletions
23
flake.nix
23
flake.nix
|
@ -144,6 +144,29 @@
|
|||
];
|
||||
};
|
||||
|
||||
buldak = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = specialArgs;
|
||||
modules = [
|
||||
./hosts/buldak/configuration.nix
|
||||
catppuccin.nixosModules.catppuccin
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${username} = {
|
||||
imports = [./home-manager/home.nix catppuccin.homeModules.catppuccin moonlight.homeModules.default];
|
||||
|
||||
home.packages = [
|
||||
inputs.miovim.packages.${system}.default
|
||||
];
|
||||
|
||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
workstation = nixpkgsUnstable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = specialArgs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue