diff --git a/README.md b/README.md index 54ba555..db7dcfa 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ If you want to further customize Nixos95 you can use the following config option name = "Terminal"; description = "Run commands"; icon = "xfce4-terminal"; - pkg = pkgs.xfce.xfce4-terminal; + pkg = pkgs.xfce4-terminal; } { name = "Browser"; diff --git a/flake.lock b/flake.lock index 1c795ba..2a00108 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1753294394, - "narHash": "sha256-1Dfgq09lHZ8AdYB2Deu/mYP1pMNpob8CgqT5Mzo44eI=", + "lastModified": 1768271922, + "narHash": "sha256-zmFw7AtcmfMxW3vR7AiGeQQeHhdrd2x7a3hxzd6vJYI=", "owner": "nix-community", "repo": "home-manager", - "rev": "1fde6fb1be6cd5dc513dc1c287d69e4eb2de973e", + "rev": "fbd566923adcfa67be512a14a79467e2ab8a5777", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1755615617, - "narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=", + "lastModified": 1768127708, + "narHash": "sha256-1Sm77VfZh3mU0F5OqKABNLWxOuDeHIlcFjsXeeiPazs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "20075955deac2583bb12f07151c2df830ef346b4", + "rev": "ffbc9f8cbaacfb331b6017d5a5abb21a492c9a38", "type": "github" }, "original": { diff --git a/nixos95/core.nix b/nixos95/core.nix index e390236..6894bf5 100644 --- a/nixos95/core.nix +++ b/nixos95/core.nix @@ -23,7 +23,7 @@ in lib.mkIf cfg.enable { xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; environment.systemPackages = [ - pkgs.xfce.xfce4-screenshooter + pkgs.xfce4-screenshooter ]; } diff --git a/nixos95/keybinds.nix b/nixos95/keybinds.nix index 0fb40a0..e79d8aa 100644 --- a/nixos95/keybinds.nix +++ b/nixos95/keybinds.nix @@ -37,7 +37,7 @@ in { } { key = "Super_L"; - pkg = pkgs.xfce.xfce4-whiskermenu-plugin; # open whiskermenu with a press on SUPER like on windows + pkg = pkgs.xfce4-whiskermenu-plugin; # open whiskermenu with a press on SUPER like on windows } { key = "XF86AudioMute"; diff --git a/nixos95/taskbar.nix b/nixos95/taskbar.nix index f4fd972..3540451 100644 --- a/nixos95/taskbar.nix +++ b/nixos95/taskbar.nix @@ -108,7 +108,7 @@ in { name = "Terminal"; description = "Run commands"; icon = "xfce4-terminal"; - pkg = pkgs.xfce.xfce4-terminal; + pkg = pkgs.xfce4-terminal; } { name = "Browser"; @@ -125,8 +125,8 @@ in { config = lib.mkIf config.nixos95.enable { environment.systemPackages = [ - pkgs.xfce.xfce4-whiskermenu-plugin - (lib.mkIf cfg.battery-plugin.enable pkgs.xfce.xfce4-battery-plugin) + pkgs.xfce4-whiskermenu-plugin + (lib.mkIf cfg.battery-plugin.enable pkgs.xfce4-battery-plugin) ]; home-manager.users.${user} = {