diff options
| author | Fuwn <[email protected]> | 2024-06-26 10:04:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-26 10:04:46 -0700 |
| commit | f719d617fd2be126599588c90b94ed11d9d7b1cd (patch) | |
| tree | 2b26e5e00e3ec2c46ea27fb49c918e15ad10ca4b /home | |
| parent | flake (diff) | |
| download | home-manager-config-f719d617fd2be126599588c90b94ed11d9d7b1cd.tar.xz home-manager-config-f719d617fd2be126599588c90b94ed11d9d7b1cd.zip | |
hi
Diffstat (limited to 'home')
| -rw-r--r-- | home/fuwn/cli/default.nix | 1 | ||||
| -rw-r--r-- | home/fuwn/meta/anime/default.nix (renamed from home/fuwn/cli/ani-cli/default.nix) | 1 | ||||
| -rw-r--r-- | home/fuwn/meta/default.nix | 4 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/agnostic/default.nix | 5 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/default.nix | 7 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/wayland/default.nix | 6 | ||||
| -rw-r--r-- | home/fuwn/meta/image/default.nix (renamed from home/fuwn/meta/imagery/default.nix) | 0 | ||||
| -rw-r--r-- | home/fuwn/meta/tools/tcp/default.nix | 1 | ||||
| -rw-r--r-- | home/fuwn/meta/video/default.nix | 6 |
9 files changed, 27 insertions, 4 deletions
diff --git a/home/fuwn/cli/default.nix b/home/fuwn/cli/default.nix index 4d14257..06a0dbb 100644 --- a/home/fuwn/cli/default.nix +++ b/home/fuwn/cli/default.nix @@ -1,6 +1,5 @@ _: { imports = [ - ./ani-cli ./asciinema ./bat ./dog diff --git a/home/fuwn/cli/ani-cli/default.nix b/home/fuwn/meta/anime/default.nix index 723bfb9..75f6bb8 100644 --- a/home/fuwn/cli/ani-cli/default.nix +++ b/home/fuwn/meta/anime/default.nix @@ -1,5 +1,6 @@ { pkgs, ... }: { home.packages = with pkgs; [ ani-cli + miru ]; } diff --git a/home/fuwn/meta/default.nix b/home/fuwn/meta/default.nix index 6d6bf65..dde52ac 100644 --- a/home/fuwn/meta/default.nix +++ b/home/fuwn/meta/default.nix @@ -1,14 +1,16 @@ _: { imports = [ + ./anime ./audio ./bitwarden ./calculator ./desktop - ./imagery + ./image ./language ./rice ./spotify ./steam ./tools + ./video ]; } diff --git a/home/fuwn/meta/desktop/agnostic/default.nix b/home/fuwn/meta/desktop/agnostic/default.nix new file mode 100644 index 0000000..997d62a --- /dev/null +++ b/home/fuwn/meta/desktop/agnostic/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + showmethekey + ]; +} diff --git a/home/fuwn/meta/desktop/default.nix b/home/fuwn/meta/desktop/default.nix index 36de93a..2f6763f 100644 --- a/home/fuwn/meta/desktop/default.nix +++ b/home/fuwn/meta/desktop/default.nix @@ -1 +1,6 @@ -_: { imports = [ ./wayland ]; } +_: { + imports = [ + ./agnostic + ./wayland + ]; +} diff --git a/home/fuwn/meta/desktop/wayland/default.nix b/home/fuwn/meta/desktop/wayland/default.nix index 89f1bf0..342a182 100644 --- a/home/fuwn/meta/desktop/wayland/default.nix +++ b/home/fuwn/meta/desktop/wayland/default.nix @@ -1,7 +1,11 @@ -_: { +{ pkgs, ... }: { imports = [ ./hyprland ./meta ./waybar ]; + + home.packages = with pkgs; [ + ydotool + ]; } diff --git a/home/fuwn/meta/imagery/default.nix b/home/fuwn/meta/image/default.nix index 38c92e8..38c92e8 100644 --- a/home/fuwn/meta/imagery/default.nix +++ b/home/fuwn/meta/image/default.nix diff --git a/home/fuwn/meta/tools/tcp/default.nix b/home/fuwn/meta/tools/tcp/default.nix index 85b6120..ad648f1 100644 --- a/home/fuwn/meta/tools/tcp/default.nix +++ b/home/fuwn/meta/tools/tcp/default.nix @@ -2,5 +2,6 @@ home.packages = with pkgs; [ netcat-openbsd inetutils + whois ]; } diff --git a/home/fuwn/meta/video/default.nix b/home/fuwn/meta/video/default.nix new file mode 100644 index 0000000..17d91b7 --- /dev/null +++ b/home/fuwn/meta/video/default.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + yt-dlp + clapper + ]; +} |