diff options
| author | adikro <adikro@disroot.org> | 2025-11-29 13:47:53 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-11-29 13:47:53 +0100 |
| commit | 896e7b5791c4723313790b1e07e867fcd7003212 (patch) | |
| tree | 9ef9c3ad79e60d4154bc3271bb65a463b8de926a | |
| parent | c5ec6f14ed7b949c30d1cdf0fb7b1da518038bb7 (diff) | |
uhh
| -rw-r--r-- | flake.lock | 12 | ||||
| -rw-r--r-- | home/home.nix | 18 | ||||
| -rw-r--r-- | home/wayland/niri/binds.nix | 2 | ||||
| -rw-r--r-- | hosts/desktop/configuration.nix | 15 | ||||
| -rw-r--r-- | modules/boot.nix | 3 | ||||
| -rw-r--r-- | modules/tor.nix | 2 |
6 files changed, 28 insertions, 24 deletions
@@ -938,11 +938,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1764385708, - "narHash": "sha256-OW19qwRisjzD1vQknzGXbZ5yqtULI1FU1f6HZdKn5TA=", + "lastModified": 1764418392, + "narHash": "sha256-4/kXVct+EK/ODr0H1SvWwXGBhk1v6gCj1+mQl6duz1s=", "owner": "nix-community", "repo": "nixvim", - "rev": "96d3538c32816992f30d858095aa93c9ee32fd45", + "rev": "9d6a7608df21df7593ae1b9a552173d7cc2597c4", "type": "github" }, "original": { @@ -958,11 +958,11 @@ ] }, "locked": { - "lastModified": 1764401432, - "narHash": "sha256-WECTdY/gLw8SqD+VKFpTnQDFhOEHBivf4FKEPb2j4OA=", + "lastModified": 1764418181, + "narHash": "sha256-P6omGxQchU+7xgQQ9uxlQyaYssoB/FhY+lrhtLfXTFM=", "owner": "noctalia-dev", "repo": "noctalia-shell", - "rev": "3db394c80ab21b1b821ea5496be202e0730d44c0", + "rev": "e627e67463527fbaa0c8ac1da9b7ead9f7be94ca", "type": "github" }, "original": { diff --git a/home/home.nix b/home/home.nix index 87dc479..02f896d 100644 --- a/home/home.nix +++ b/home/home.nix @@ -27,39 +27,28 @@ home.stateVersion = "25.05"; home.packages = with pkgs; [ + wofi librewolf firefox equibop - sherlock inputs.prismlauncher.packages.${pkgs.stdenv.hostPlatform.system}.prismlauncher inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww - clinfo grim slurp satty veracrypt - imagemagick - exiftool brave ripgrep - nix-index qbittorrent-enhanced fastfetch foot - wofi bitwarden-desktop yt-dlp_git ffmpeg mpv gimp - obs-cmd - obs-studio mako thunderbird - nautilus - xfce.thunar - xfce.thunar-archive-plugin - xfce.thunar-volman magic-wormhole obsidian alsa-utils @@ -78,6 +67,7 @@ gtk = { enable = true; + colorScheme = "dark"; theme = { name = "Adwaita-dark"; package = pkgs.gnome-themes-extra; @@ -86,6 +76,8 @@ qt = { enable = true; - style.name = "Breeze-Dark"; + style.name = "adwaita-dark"; + style.package = pkgs.adwaita-qt; + platformTheme.name = "kde"; }; } diff --git a/home/wayland/niri/binds.nix b/home/wayland/niri/binds.nix index 8e9f1d0..14a0ea4 100644 --- a/home/wayland/niri/binds.nix +++ b/home/wayland/niri/binds.nix @@ -35,7 +35,7 @@ "Mod+Shift+Equal".action = set-window-height "+10%"; # Misc - # "Mod+Shift+V".action = switch-focus-between-floating-and-tiling; + "Mod+Shift+V".action = switch-focus-between-floating-and-tiling; "Mod+Shift+P".action = power-off-monitors; "Mod+W".action = toggle-column-tabbed-display; diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index df86452..50dc3a3 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -32,6 +32,15 @@ enable = true; }; + programs.thunar = { + enable = true; + plugins = [ + pkgs.xfce.thunar-volman + pkgs.xfce.thunar-vcs-plugins + pkgs.xfce.thunar-archive-plugin + ]; + }; + programs.xwayland = { enable = true; package = pkgs.xwayland-satellite; @@ -152,15 +161,18 @@ environment.sessionVariables = { }; programs.fish.enable = true; + + programs.adb.enable = true; users.users.adam = { isNormalUser = true; - extraGroups = [ "wheel" "input" "docker" ]; + extraGroups = [ "wheel" "input" "docker" "adbusers" ]; home = "/home/adam"; shell = pkgs.fish; }; environment.systemPackages = with pkgs; [ + kdePackages.dolphin dbus swaylock-effects swayidle @@ -172,7 +184,6 @@ environment.sessionVariables = { linux-firmware dbus nh - gamemode mangohud cliphist wl-clipboard diff --git a/modules/boot.nix b/modules/boot.nix index 6930a51..587b43f 100644 --- a/modules/boot.nix +++ b/modules/boot.nix @@ -17,6 +17,7 @@ "video=DP-1:2560x1440@240" "quiet" ]; - kernelPackages = pkgs.linuxPackages_cachyos-lto.cachyOverride { mArch = "ZEN4"; }; + # kernelPackages = pkgs.linuxPackages_cachyos-lto.cachyOverride { mArch = "ZEN4"; }; + kernelPackages = pkgs.linuxPackages_latest; }; } diff --git a/modules/tor.nix b/modules/tor.nix index ad69f52..bef081c 100644 --- a/modules/tor.nix +++ b/modules/tor.nix @@ -1,6 +1,6 @@ { pkgs, ... }: { - networking.proxy.default = "https://127.0.0.1:8118"; + # networking.proxy.default = "https://127.0.0.1:8118"; services = { tor = { enable = true; |
