This commit is contained in:
m3tam3re
2024-09-05 14:34:40 +02:00
parent 1f6e2b3a64
commit 8f009006f9
6 changed files with 322 additions and 2 deletions

View File

@@ -1,13 +1,19 @@
{config, ...}: {
{
imports = [
../common
../features/cli
../features/desktop
./home.nix
];
features = {
cli = {
fish.enable = false;
fish.enable = true;
fzf.enable = true;
neofetch.enable = true;
};
desktop = {
wayland.enable = true;
};
};
}