tangled
alpha
login
or
join now
quilling.dev
/
nixos-config
2
fork
atom
My personal nix config files. Feel free to import flake.
2
fork
atom
overview
issues
pulls
pipelines
add bubblegum
quilling.dev
6 months ago
620f2ebc
63561f95
+12
1 changed file
expand all
collapse all
unified
split
flake.nix
+12
flake.nix
···
193
193
# inputs.rsky.nixosModules.default
194
194
];
195
195
};
196
196
+
bubblegum = nixpkgs.lib.nixosSystem {
197
197
+
specialArgs = inheritSpecialArgs;
198
198
+
system = "x86_64-linux";
199
199
+
modules = [
200
200
+
./hosts/bubblegum.nix
201
201
+
self.nixosModules.default
202
202
+
chaotic.nixosModules.default
203
203
+
home-manager.nixosModules.home-manager
204
204
+
nix-flatpak.nixosModules.nix-flatpak
205
205
+
self.homeManagerConfig
206
206
+
];
207
207
+
};
196
208
jupiter = nixpkgs.lib.nixosSystem {
197
209
specialArgs = inheritSpecialArgs;
198
210
system = "aarch64-linux";