Update flake.lock

This commit is contained in:
Victor Mignot 2024-08-12 19:41:16 +02:00
parent 32b7a34b6f
commit 23a419c2a3
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D
2 changed files with 22 additions and 33 deletions

View file

@ -204,11 +204,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1722630065, "lastModified": 1723399884,
"narHash": "sha256-QfM/9BMRkCmgWzrPDK+KbgJOUlSJnfX4OvsUupEUZvA=", "narHash": "sha256-97wn0ihhGqfMb8WcUgzzkM/TuAxce2Gd20A8oiruju4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "afc892db74d65042031a093adb6010c4c3378422", "rev": "086f619dd991a4d355c07837448244029fc2d9ab",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -346,11 +346,11 @@
}, },
"nixpkgs-stable_2": { "nixpkgs-stable_2": {
"locked": { "locked": {
"lastModified": 1722519197, "lastModified": 1723282977,
"narHash": "sha256-VEdJmVU2eLFtLqCjTYJd1J7+Go8idAcZoT11IewFiRg=", "narHash": "sha256-oTK91aOlA/4IsjNAZGMEBz7Sq1zBS0Ltu4/nIQdYDOg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "05405724efa137a0b899cce5ab4dde463b4fd30b", "rev": "a781ff33ae258bbcfd4ed6e673860c3e923bf2cc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -378,11 +378,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1722421184, "lastModified": 1723175592,
"narHash": "sha256-/DJBI6trCeVnasdjUo9pbnodCLZcFqnVZiLUfqLH4jA=", "narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9f918d616c5321ad374ae6cb5ea89c9e04bf3e58", "rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -465,11 +465,11 @@
"nixpkgs-stable": "nixpkgs-stable_3" "nixpkgs-stable": "nixpkgs-stable_3"
}, },
"locked": { "locked": {
"lastModified": 1722114803, "lastModified": 1723454404,
"narHash": "sha256-s6YhI8UHwQvO4cIFLwl1wZ1eS5Cuuw7ld2VzUchdFP0=", "narHash": "sha256-Zhcf1TMDYb0BxDHKhEKCKFb1qi2vwlX0BgJPwk9Gd3E=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "eb34eb588132d653e4c4925d862f1e5a227cc2ab", "rev": "ab2d1ffeb5b85da2f6537beb2fe05da54276c261",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -27,15 +27,11 @@ let
wl-clipboard wl-clipboard
clipman clipman
wf-recorder wf-recorder
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
qt5ct qt5ct
libsForQt5.qtstyleplugin-kvantum
font-awesome font-awesome
nordzy-cursor-theme
jetbrains-mono jetbrains-mono
xdg-utils xdg-utils
libnotify libnotify
adwaita-icon-theme
] ]
++ ( ++ (
if isNvidiaGpu then if isNvidiaGpu then
@ -71,11 +67,6 @@ in
config = mkIf config.my.desktop.sway.enable { config = mkIf config.my.desktop.sway.enable {
home.packages = desktopPackages; home.packages = desktopPackages;
dconf = {
enable = true;
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
};
# Theming GTK # Theming GTK
gtk = { gtk = {
enable = true; enable = true;
@ -87,10 +78,20 @@ in
name = "Nordzy-cursors"; name = "Nordzy-cursors";
package = pkgs.nordzy-cursor-theme; package = pkgs.nordzy-cursor-theme;
}; };
iconTheme = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
}; };
font = {
name = "JetBrainsMono Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
};
};
wayland.windowManager.sway = { wayland.windowManager.sway = {
enable = true; enable = true;
systemd.enable = false; systemd.enable = false;
package = null;
checkConfig = false; checkConfig = false;
config = rec { config = rec {
@ -166,18 +167,6 @@ in
${pkgs.wl-clipboard}/bin/wl-paste -t text --watch ${pkgs.clipman}/bin/clipman store --no-persist ${pkgs.wl-clipboard}/bin/wl-paste -t text --watch ${pkgs.clipman}/bin/clipman store --no-persist
''; '';
} }
{
command = "${pkgs.glib}/bin/gsettings set ${gnomeSchema} gtk-theme 'Nordic'";
always = true;
}
{
command = "${pkgs.glib}/bin/gsettings set ${gnomeSchema} cursor-theme 'Nordzy-cursors'";
always = true;
}
{
command = "${pkgs.glib}/bin/gsettings set ${gnomeSchema} font-name 'JetBrainsMono Nerd Font Mono'";
always = true;
}
]; ];
modes = { modes = {