Compare commits

...

2 commits

Author SHA1 Message Date
8cfa70e239
chore: update nixpkgs
Some checks failed
Continuous Integration / Checks (push) Has been cancelled
2025-02-24 20:57:18 +01:00
86e5c155bf
fix(home): adwaita cursor 2025-02-02 13:07:59 +01:00
2 changed files with 19 additions and 17 deletions

30
flake.lock generated
View file

@ -144,11 +144,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736373539, "lastModified": 1739757849,
"narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=", "narHash": "sha256-Gs076ot1YuAAsYVcyidLKUMIc4ooOaRGO0PqTY7sBzA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "bd65bc3cde04c16755955630b344bc9e35272c56", "rev": "9d3d080aec2a35e05a15cedd281c2384767c2cfe",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -247,11 +247,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1738391520, "lastModified": 1740387674,
"narHash": "sha256-6HI58PKjddsC0RA0gBQlt6ox47oH//jLUHwx05RO8g0=", "narHash": "sha256-pGk/aA0EBvI6o4DeuZsr05Ig/r4uMlSaf5EWUZEWM10=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "34b64e4e1ddb14e3ffc7db8d4a781396dbbab773", "rev": "d58f642ddb23320965b27beb0beba7236e9117b5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -263,11 +263,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1738392223, "lastModified": 1740357648,
"narHash": "sha256-epwD0BvADThOtRrDoI7qJUZPe1vhXoSIwLna2/VoOMA=", "narHash": "sha256-CaawdjLmSny3UV97my2Hg4h867p4lhd+EpRhFQGaHK4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7d84bdf9cb85f399a8eafe8e17acee2354f13a21", "rev": "060b03c5d950ee0592d16e97c63860640bd31f50",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -279,11 +279,11 @@
}, },
"nixpkgs-full": { "nixpkgs-full": {
"locked": { "locked": {
"lastModified": 1738277201, "lastModified": 1740339700,
"narHash": "sha256-6L+WXKCw5mqnUIExvqkD99pJQ41xgyCk6z/H9snClwk=", "narHash": "sha256-cbrw7EgQhcdFnu6iS3vane53bEagZQy/xyIkDWpCgVE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "666e1b3f09c267afd66addebe80fb05a5ef2b554", "rev": "04ef94c4c1582fd485bbfdb8c4a8ba250e359195",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -332,11 +332,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1738070913, "lastModified": 1739829690,
"narHash": "sha256-j6jC12vCFsTGDmY2u1H12lMr62fnclNjuCtAdF1a4Nk=", "narHash": "sha256-mL1szCeIsjh6Khn3nH2cYtwO5YXG6gBiTw1A30iGeDU=",
"owner": "numtide", "owner": "numtide",
"repo": "treefmt-nix", "repo": "treefmt-nix",
"rev": "bebf27d00f7d10ba75332a0541ac43676985dea3", "rev": "3d0579f5cc93436052d94b73925b48973a104204",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -2,7 +2,8 @@
with lib.hm.gvariant; with lib.hm.gvariant;
{ {
home.packages = [ home.packages = [
pkgs.gnomeExtensions.switcher pkgs.adwaita-icon-theme
pkgs.adwaita-qt
]; ];
dconf.settings = with lib.hm.gvariant; { dconf.settings = with lib.hm.gvariant; {
@ -40,6 +41,7 @@ with lib.hm.gvariant;
clock-show-date = true; clock-show-date = true;
clock-show-seconds = false; clock-show-seconds = false;
clock-show-weekday = true; clock-show-weekday = true;
cursor-theme = "Adwaita";
enable-animations = true; enable-animations = true;
enable-hot-corners = false; enable-hot-corners = false;
font-antialiasing = "grayscale"; font-antialiasing = "grayscale";
@ -53,7 +55,7 @@ with lib.hm.gvariant;
locate-pointer = false; locate-pointer = false;
monospace-font-name = "JetBrains Mono 10"; monospace-font-name = "JetBrains Mono 10";
show-battery-percentage = false; show-battery-percentage = false;
text-scaling-factor = 1.0; #text-scaling-factor = 1.0;
toolkit-accessibility = false; toolkit-accessibility = false;
}; };