diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-01-22 08:19:40 -0500 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-01-22 08:19:40 -0500 |
commit | 93280382da83e885d919d3b13f4383c2ac6102d3 (patch) | |
tree | b3196984937ee635143710925bfce2bd5cb6715f /modules/desktop | |
parent | be25e99f89ea9c05483e05c104a8c520a030484d (diff) | |
download | nix-config-93280382da83e885d919d3b13f4383c2ac6102d3.tar.gz nix-config-93280382da83e885d919d3b13f4383c2ac6102d3.tar.bz2 nix-config-93280382da83e885d919d3b13f4383c2ac6102d3.zip |
update to 24.11
Diffstat (limited to 'modules/desktop')
-rw-r--r-- | modules/desktop/apps/browsers/firefox.nix | 4 | ||||
-rw-r--r-- | modules/desktop/apps/games/vintagestory.nix | 7 | ||||
-rw-r--r-- | modules/desktop/apps/mpd.nix | 2 | ||||
-rw-r--r-- | modules/desktop/hyprland.nix | 6 |
4 files changed, 4 insertions, 15 deletions
diff --git a/modules/desktop/apps/browsers/firefox.nix b/modules/desktop/apps/browsers/firefox.nix index 3c647f1..16cd3fd 100644 --- a/modules/desktop/apps/browsers/firefox.nix +++ b/modules/desktop/apps/browsers/firefox.nix @@ -47,8 +47,8 @@ in definedAliases = [ "@np" ]; }; "NixOS Wiki" = { - urls = [{ template = "https://nixos.wiki/index.php?search={searchTerms}"; }]; - iconUpdateURL = "https://nixos.wiki/favicon.png"; + urls = [{ template = "https://wiki.nixos.org/index.php?search={searchTerms}"; }]; + iconUpdateURL = "https://wiki.nixos.org/favicon.png"; updateInterval = 24 * 60 * 60 * 1000; definedAliases = [ "@nw" ]; }; diff --git a/modules/desktop/apps/games/vintagestory.nix b/modules/desktop/apps/games/vintagestory.nix index db3d49e..ec82058 100644 --- a/modules/desktop/apps/games/vintagestory.nix +++ b/modules/desktop/apps/games/vintagestory.nix @@ -9,11 +9,6 @@ configDir = config.nixosConfig.configDir; in { config = lib.mkIf (gamesConf.enable) { - environment.systemPackages = [ - pkgs.dotnet-sdk_7 - ]; - environment.sessionVariables = { - DOTNET_ROOT = "${pkgs.dotnet-sdk_7}"; - }; + }; } diff --git a/modules/desktop/apps/mpd.nix b/modules/desktop/apps/mpd.nix index f37c465..17b22ec 100644 --- a/modules/desktop/apps/mpd.nix +++ b/modules/desktop/apps/mpd.nix @@ -22,7 +22,7 @@ in services.mpd = { enable = true; - musicDirectory = /home/jon/mus; + musicDirectory = "/home/jon/mus"; extraConfig = '' audio_output { type "pipewire" diff --git a/modules/desktop/hyprland.nix b/modules/desktop/hyprland.nix index 678a97f..7d594e1 100644 --- a/modules/desktop/hyprland.nix +++ b/modules/desktop/hyprland.nix @@ -34,12 +34,6 @@ size = 3; passes = 1; }; - drop_shadow = true; - shadow_ignore_window = true; - shadow_offset = "0 2"; - shadow_range = 20; - shadow_render_power = 3; - "col.shadow" = "rgba(00000055)"; }; animations = { |