Compare commits

..

2 Commits

Author SHA1 Message Date
salt d8844ce058 Add themes 2026-05-03 01:13:48 -05:00
salt 82a001387a Configure hyprcursor 2026-05-03 01:12:58 -05:00
2 changed files with 18 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#
# Flatpak
#
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
adwaita
breeze
];
}
+7
View File
@@ -5,6 +5,7 @@
{
imports = [
./base.nix
./flatpak.nix
./fonts.nix
./sddm.nix
@@ -49,4 +50,10 @@
slurp
wl-clipboard
];
# Some basic hyprcursor stuff
environment.variables = [
HYPRCURSOR_THEME = "Adwaita";
HYPRCURSOR_SIZE = "24";
];
}