From 284c440ee9586ea45af55ab1cee1b7f26beda204 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 2 Feb 2026 13:06:03 +0100 Subject: did preparations for full refactor --- modules/home/hyprland/chernobyl/default.nix | 7 +++ modules/home/hyprland/chernobyl/dunst.nix | 7 +++ modules/home/hyprland/chernobyl/fastfetch.nix | 83 +++++++++++++++++++++++++++ modules/home/hyprland/chernobyl/hyprland.nix | 19 ++++++ modules/home/hyprland/chernobyl/kitty.nix | 7 +++ modules/home/hyprland/default.nix | 7 --- modules/home/hyprland/dunst.nix | 7 --- modules/home/hyprland/hyprland.nix | 12 ---- modules/home/hyprland/kitty.nix | 7 --- 9 files changed, 123 insertions(+), 33 deletions(-) create mode 100644 modules/home/hyprland/chernobyl/default.nix create mode 100644 modules/home/hyprland/chernobyl/dunst.nix create mode 100644 modules/home/hyprland/chernobyl/fastfetch.nix create mode 100644 modules/home/hyprland/chernobyl/hyprland.nix create mode 100644 modules/home/hyprland/chernobyl/kitty.nix delete mode 100644 modules/home/hyprland/default.nix delete mode 100644 modules/home/hyprland/dunst.nix delete mode 100644 modules/home/hyprland/hyprland.nix delete mode 100644 modules/home/hyprland/kitty.nix (limited to 'modules/home') 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 diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix deleted file mode 100644 index 915c8c1..0000000 --- a/modules/home/hyprland/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: - -{ - imports = [ - ./kitty.nix - ]; -} \ No newline at end of file diff --git a/modules/home/hyprland/dunst.nix b/modules/home/hyprland/dunst.nix deleted file mode 100644 index 98329dd..0000000 --- a/modules/home/hyprland/dunst.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - services.dunst = { - enable = true; - } -} \ No newline at end of file diff --git a/modules/home/hyprland/hyprland.nix b/modules/home/hyprland/hyprland.nix deleted file mode 100644 index 9a65a0b..0000000 --- a/modules/home/hyprland/hyprland.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ pkgs, ... }: - -{ - programs.hyprland = { - enable = true; - }; - - environment.systemPackages = with pkgs; [ - qt6.qtwayland - qt6.qttools -]; -} \ No newline at end of file diff --git a/modules/home/hyprland/kitty.nix b/modules/home/hyprland/kitty.nix deleted file mode 100644 index 11d4054..0000000 --- a/modules/home/hyprland/kitty.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - programs.kitty = { - enable = true; - }; -} \ No newline at end of file -- cgit v1.2.3