diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-04 18:50:11 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:44 -0700 |
| commit | 10f11ec042ab468821274636d438f84781cb2408 (patch) | |
| tree | dde2244d5e9d76f7191e095a621bf23f9adcd9ab /snowfall/systems/x86_64-linux/c-pc/default.nix | |
| parent | e45aca9d0cbda0559fb3c6a8075e029faa9c58ac (diff) | |
migration: desktop role
Diffstat (limited to 'snowfall/systems/x86_64-linux/c-pc/default.nix')
| -rw-r--r-- | snowfall/systems/x86_64-linux/c-pc/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/snowfall/systems/x86_64-linux/c-pc/default.nix b/snowfall/systems/x86_64-linux/c-pc/default.nix index 201c999..05f6965 100644 --- a/snowfall/systems/x86_64-linux/c-pc/default.nix +++ b/snowfall/systems/x86_64-linux/c-pc/default.nix @@ -1,4 +1,4 @@ -{ lib, namespace, ... }: +{ lib, pkgs, namespace, ... }: with lib; with lib.${namespace}; { imports = [ @@ -14,7 +14,12 @@ with lib; with lib.${namespace}; { suites = { common.enable = true; + desktop.enable = true; }; + + fonts.extra = with pkgs; [ + minecraftia + ]; }; system.stateVersion = "23.11"; |