tangled
alpha
login
or
join now
ngp.computer
/
nixos
Configuration for my NixOS based systems and Home Manager
0
fork
atom
overview
issues
pulls
pipelines
autoformat
ngp.computer
2 months ago
8db2e798
7fe86761
+3
-28
1 changed file
expand all
collapse all
unified
split
flake.nix
+3
-28
flake.nix
···
71
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
72
in
73
{
74
-
nixosConfigurations.${name} = inputs.nixpkgs.lib.nixosSystem {
75
-
inherit system;
76
-
specialArgs = { inherit unstable inputs; };
77
modules = [
78
determinite.nixosModules.default
79
./configuration.nix
···
90
# Optionally, use home-manager.extraSpecialArgs to pass
91
# arguments to home.nix
92
}
93
-
#./hardware-configuration.nix
94
-
#./boot.nix
95
-
#./networking.nix
96
-
#./users.nix
97
-
#./packages.nix
98
-
#./services.nix
99
-
# See configuration.nix for more information on this one
100
-
#(
101
-
# { ... }:
102
-
# {
103
-
# time.timeZone = "America/Chicago";
104
-
# i18n.defaultLocale = "en_US.UTF-8";
105
-
# system.copySystemConfiguration = true;
106
-
# documentation.man.generateCaches = true;
107
-
# system.autoUpgrade = {
108
-
# enable = true;
109
-
# dates = "09:00";
110
-
# randomizedDelaySec = "45min";
111
-
# };
112
-
# nix.gc.automatic = true;
113
-
# nix.gc.options = "--delete-older-than 8d";
114
-
# system.stateVersion = "23.11"; # Did you read the comment?
115
-
# }
116
-
#)
117
];
118
-
specialArgs = { inherit home-manager nixpkgs-unstable; };
119
};
120
homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration {
121
inherit pkgs;
···
71
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
72
in
73
{
74
+
nixosConfigurations.misaki = inputs.nixpkgs.lib.nixosSystem {
75
+
system = "x86_64-linux";
76
+
specialArgs = { inherit unstable inputs home-manager; };
77
modules = [
78
determinite.nixosModules.default
79
./configuration.nix
···
90
# Optionally, use home-manager.extraSpecialArgs to pass
91
# arguments to home.nix
92
}
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
93
];
0
94
};
95
homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration {
96
inherit pkgs;