dam hardware configuration is hard

This commit is contained in:
marty 2025-12-16 17:55:19 +01:00
parent 5b70d63280
commit d4c499fce1
5 changed files with 38 additions and 38 deletions

View file

@ -9,5 +9,6 @@
imports = [
./boot.nix
./shell.nix
./terminal.nix
];
}

View file

@ -5,6 +5,11 @@
systemPackages = with pkgs; [
fish
coreutils
]
}
];
};
programs = {
fish = {
enable = true;
};
};
}

9
system/terminal.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
kitty
];
};
}