-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric.nix
56 lines (52 loc) · 2.26 KB
/
generic.nix
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ config
, pkgs
, pkgsStable ? pkgs
, cudaPkgs ? pkgs # nixpkgs with cuda (potentially) enabled
, desktopEnvironment # should be one of "kde" or "xmonad"
, platform # should be one of "x86-64" or "arm64"
, inputs
, system
, haskellVersion ? null
, extraImports ? []
, extraPackages ? []
, extraEnvironments ? []
, developmentEnvironmentArgs ? {}
}:
let
utils = import ./utils;
environment =
let
usrEnvs = utils.env.concatEnvironments extraEnvironments;
envPackages = import ./collections/system-defaults.nix {inherit cudaPkgs pkgs pkgsStable utils platform; };
devEnvironment = import ./development-environment ({ inherit pkgs utils haskellVersion; } // developmentEnvironmentArgs);
de = import ./desktop-environment/config.nix { inherit pkgs utils desktopEnvironment; };
defaultEnvironment = import ./configs/generic.nix { inherit pkgs pkgsStable utils inputs system; };
e = utils.env.concatEnvironments [ devEnvironment de defaultEnvironment envPackages ];
emacsEnvironment = import ./emacs { inherit pkgs utils;
extraPackages = e.emacsExtraPackages;
extraConfigs = [e.emacsExtraConfig];
};
in utils.env.concatEnvironments [e emacsEnvironment usrEnvs];
homeConfig =
{
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.sessionVariables = { GTK_THEME = "Adwaita:dark"; };
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "rebecca";
home.homeDirectory = "/home/rebecca";
imports = environment.imports ++ extraImports;
home.packages = environment.packages ++ extraPackages;
home.keyboard.options = ["ctrl:nocaps"];
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.03";
};
in homeConfig