Fix: minor errors
- fix wallpaper being removed - fix renamed xfce pkgs
This commit is contained in:
commit
f6b5c6f4f0
6 changed files with 13 additions and 13 deletions
|
|
@ -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";
|
||||
|
|
|
|||
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ in {
|
|||
home-manager.nixosModules.home-manager
|
||||
|
||||
./core.nix
|
||||
./desktop.nix
|
||||
#./desktop.nix
|
||||
./keybinds.nix
|
||||
./taskbar.nix
|
||||
./theme.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";
|
||||
|
|
|
|||
|
|
@ -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} = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue