tangled
alpha
login
or
join now
dunkirk.sh
/
dots
3
fork
atom
Kieran's opinionated (and probably slightly dumb) nix config
3
fork
atom
overview
issues
pulls
pipelines
chore: move host specific data to moonlark folder
Kieran Klukas
2 years ago
a43b662c
ac5626cc
+2
-2
3 changed files
expand all
collapse all
unified
split
flake.nix
moonlark
configuration.nix
hardware-configuration.nix
+2
-2
flake.nix
···
28
28
mockingjay = nixpkgs.lib.nixosSystem {
29
29
specialArgs = {inherit inputs outputs;};
30
30
# > Our main nixos configuration file <
31
31
-
modules = [./nixos/configuration.nix];
31
31
+
modules = [./moonlark/configuration.nix];
32
32
};
33
33
};
34
34
···
36
36
# Available through 'home-manager --flake .#your-username@your-hostname'
37
37
homeConfigurations = {
38
38
# FIXME replace with your username@hostname
39
39
-
"kierank@mockingjay" = home-manager.lib.homeManagerConfiguration {
39
39
+
"kierank@moonlark" = home-manager.lib.homeManagerConfiguration {
40
40
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
41
41
extraSpecialArgs = {inherit inputs outputs;};
42
42
# > Our main home-manager configuration file <
nixos/configuration.nix
moonlark/configuration.nix
nixos/hardware-configuration.nix
moonlark/hardware-configuration.nix