This commit is contained in:
m3tam3re
2024-09-03 18:01:56 +02:00
parent d20945d5f3
commit 1f6e2b3a64
6 changed files with 83 additions and 2 deletions

View File

@@ -24,7 +24,8 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
cowsay
kitty
wofi
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello

View File

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