diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-03 14:21:56 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-03 14:21:56 -0700 |
commit | e0a4b9f9caac97ae5f73b72f95c31ed9d719b7bd (patch) | |
tree | 6563fde50a8b56a32ca32fafb7b721824b5bec77 /lib | |
parent | remove mytools (diff) | |
download | world-e0a4b9f9caac97ae5f73b72f95c31ed9d719b7bd.tar.gz |
rename `desktop` to `isDesktop`
The variable is used to define the kind of machine we're managing. `isDesktop` is a bit more descriptive. We import `devel` for all machines, and we fine tune which packages we want to install based on the value of `isDesktop`.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix index 89aff0a..aa55942 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -33,12 +33,12 @@ { username , system , hostname - , desktop ? false + , isDesktop ? false }: inputs.home-manager.lib.homeManagerConfiguration { inherit username system; extraSpecialArgs = { - inherit system hostname desktop; + inherit system hostname isDesktop; }; homeDirectory = "/home/${username}"; configuration = ../users/${username}; |