blob: d6eba70fa11795ef2984646b089ef5c46ebc95c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
modulesPath,
pkgs,
...
}: {
imports = [
(modulesPath + "/profiles/base.nix")
../common
../common/desktop/gnome.nix
../common/hardware/nvidia.nix
./boot.nix
./network.nix
./packages.nix
./services.nix
../../users/seth
];
# enable non-free packages
nixpkgs.config.allowUnfree = true;
# Enable nix flakes
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = ["nix-command" "flakes"];
system.stateVersion = "23.05";
sys.gui.enable = true;
}
|