diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-05 16:14:42 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:46 -0700 |
| commit | d4a65ca9197db98306df37c1e17b85a1e6a0d67d (patch) | |
| tree | 913d536eb63e476b78c2072fa635e6521b4e2af0 /snowfall/systems | |
| parent | 8e489a4cbe7d92f0c0c35568c816221c5d6ada64 (diff) | |
migration: split system config and move fonts to system
Diffstat (limited to 'snowfall/systems')
| -rw-r--r-- | snowfall/systems/x86_64-linux/c-pc/default.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/snowfall/systems/x86_64-linux/c-pc/default.nix b/snowfall/systems/x86_64-linux/c-pc/default.nix index 5301ed8..8006e7b 100644 --- a/snowfall/systems/x86_64-linux/c-pc/default.nix +++ b/snowfall/systems/x86_64-linux/c-pc/default.nix @@ -10,7 +10,12 @@ with lib; with lib.${namespace}; { system = { hostname = "c-pc"; id = "23ce94ff"; - impermanent = true; + + impermanence.enable = true; + + fonts.extra = with pkgs; [ + minecraftia + ]; }; suites = { @@ -19,10 +24,6 @@ with lib; with lib.${namespace}; { gaming.enable = true; }; - fonts.extra = with pkgs; [ - minecraftia - ]; - apps.i3 = { videoDrivers = [ "amdgpu" ]; setupCommands = '' |