diff options
Diffstat (limited to 'modules/home/hyprland/chernobyl')
| -rw-r--r-- | modules/home/hyprland/chernobyl/default.nix | 7 | ||||
| -rw-r--r-- | modules/home/hyprland/chernobyl/dunst.nix | 7 | ||||
| -rw-r--r-- | modules/home/hyprland/chernobyl/fastfetch.nix | 83 | ||||
| -rw-r--r-- | modules/home/hyprland/chernobyl/hyprland.nix | 19 | ||||
| -rw-r--r-- | modules/home/hyprland/chernobyl/kitty.nix | 7 |
5 files changed, 123 insertions, 0 deletions
diff --git a/modules/home/hyprland/chernobyl/default.nix b/modules/home/hyprland/chernobyl/default.nix new file mode 100644 index 0000000..915c8c1 --- /dev/null +++ b/modules/home/hyprland/chernobyl/default.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + imports = [ + ./kitty.nix + ]; +}
\ No newline at end of file diff --git a/modules/home/hyprland/chernobyl/dunst.nix b/modules/home/hyprland/chernobyl/dunst.nix new file mode 100644 index 0000000..98329dd --- /dev/null +++ b/modules/home/hyprland/chernobyl/dunst.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + services.dunst = { + enable = true; + } +}
\ No newline at end of file diff --git a/modules/home/hyprland/chernobyl/fastfetch.nix b/modules/home/hyprland/chernobyl/fastfetch.nix new file mode 100644 index 0000000..1e90196 --- /dev/null +++ b/modules/home/hyprland/chernobyl/fastfetch.nix @@ -0,0 +1,83 @@ +{ pkgs, ... }: + +{ + programs.fastfetch = { + enable = true; + extraConfig = '' +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "padding": { "top": 2 }, + "type": "small" + }, + "display": { + "separator": " -> " + }, + "modules": [ + "break", + { + "type": "title", + "keyWidth": 10, + "format": " {6}{7}{8}" + }, + { + "type": "custom", + "format": " ─────────────────────────── " + }, + { + "type": "kernel", + "key": " ", + "keyColor": "yellow" + }, + { + "type": "command", + "key": " ", + "keyColor": "blue", + "text": "echo Jakoolit: v$DOTS_VERSION" + }, + { + "type": "wm", + "key": " ", + "keyColor": "magenta" + }, + { + "type": "shell", + "key": " ", + "keyColor": "yellow" + }, + { + "type": "terminal", + "key": " ", + "keyColor": "blue" + }, + { + "type": "memory", + "key": " ", + "keyColor": "magenta", + "format": "{1} / {2}" + }, + { + "type": "uptime", + "key": " ", + "keyColor": "green" + }, + { + "type": "command", + "key": " ", + "keyColor": "magenta", + "text": "echo $(( ($(date +%s) - $(stat -c %W /)) / 86400 )) days" + }, + { + "type": "custom", + "format": " ─────────────────────────── " + }, + { + "type": "custom", + "format": " \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[90m " + }, + "break" + ] +} + ''; + }; +} diff --git a/modules/home/hyprland/chernobyl/hyprland.nix b/modules/home/hyprland/chernobyl/hyprland.nix new file mode 100644 index 0000000..5347a3b --- /dev/null +++ b/modules/home/hyprland/chernobyl/hyprland.nix @@ -0,0 +1,19 @@ +{ pkgs, ... }: + +{ + programs.hyprland = { + enable = true; + }; + + environment.systemPackages = with pkgs; [ + # QT Support + qt6.qtwayland + qt6.qttools + + # XDG Support + xdg-desktop-portal-hyprland + + # Auth Demon + hyprpolkitagent +]; +}
\ No newline at end of file diff --git a/modules/home/hyprland/chernobyl/kitty.nix b/modules/home/hyprland/chernobyl/kitty.nix new file mode 100644 index 0000000..11d4054 --- /dev/null +++ b/modules/home/hyprland/chernobyl/kitty.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + programs.kitty = { + enable = true; + }; +}
\ No newline at end of file |
