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
71
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
72
72
in
73
73
{
74
74
-
nixosConfigurations.${name} = inputs.nixpkgs.lib.nixosSystem {
75
75
-
inherit system;
76
76
-
specialArgs = { inherit unstable inputs; };
74
74
+
nixosConfigurations.misaki = inputs.nixpkgs.lib.nixosSystem {
75
75
+
system = "x86_64-linux";
76
76
+
specialArgs = { inherit unstable inputs home-manager; };
77
77
modules = [
78
78
determinite.nixosModules.default
79
79
./configuration.nix
···
90
90
# Optionally, use home-manager.extraSpecialArgs to pass
91
91
# arguments to home.nix
92
92
}
93
93
-
#./hardware-configuration.nix
94
94
-
#./boot.nix
95
95
-
#./networking.nix
96
96
-
#./users.nix
97
97
-
#./packages.nix
98
98
-
#./services.nix
99
99
-
# See configuration.nix for more information on this one
100
100
-
#(
101
101
-
# { ... }:
102
102
-
# {
103
103
-
# time.timeZone = "America/Chicago";
104
104
-
# i18n.defaultLocale = "en_US.UTF-8";
105
105
-
# system.copySystemConfiguration = true;
106
106
-
# documentation.man.generateCaches = true;
107
107
-
# system.autoUpgrade = {
108
108
-
# enable = true;
109
109
-
# dates = "09:00";
110
110
-
# randomizedDelaySec = "45min";
111
111
-
# };
112
112
-
# nix.gc.automatic = true;
113
113
-
# nix.gc.options = "--delete-older-than 8d";
114
114
-
# system.stateVersion = "23.11"; # Did you read the comment?
115
115
-
# }
116
116
-
#)
117
93
];
118
118
-
specialArgs = { inherit home-manager nixpkgs-unstable; };
119
94
};
120
95
homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration {
121
96
inherit pkgs;