Compare commits

...

2 Commits

Author SHA1 Message Date
mandlm c7cb38ad3c
feat(i3lock): add background image 2022-07-10 21:00:33 +02:00
mandlm bde774e71d
chore: update flake 2022-07-10 21:00:20 +02:00
3 changed files with 15 additions and 8 deletions

View File

@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1657123678, "lastModified": 1657296039,
"narHash": "sha256-cowVkScfUPlbBXUp08MeVk/wgm9E1zp1uC+9no2hZYw=", "narHash": "sha256-Ghh39+aS+pw5sTP/ZO8VIKE6sBhMadDaQZtf+3yu4Vc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "316b762afdb9e142a803f29c49a88b4a47db80ee", "rev": "71d7a4c037dc4f3e98d5c4a81b941933cf5bf675",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -10,10 +10,17 @@ in
./i3status-rust.nix ./i3status-rust.nix
]; ];
home.file.workspaces = { home.file = {
source = ./workspaces; workspaces = {
target = ".config/i3/workspaces"; source = ./workspaces;
recursive = true; target = ".config/i3/workspaces";
recursive = true;
};
wallpapers = {
source = ./wallpapers;
target = ".config/i3/wallpapers";
recursive = true;
};
}; };
xsession.windowManager.i3 = { xsession.windowManager.i3 = {
@ -83,6 +90,6 @@ in
services.screen-locker = { services.screen-locker = {
enable = true; enable = true;
lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c 000000"; lockCmd = "${pkgs.i3lock}/bin/i3lock --nofork --image ~/.config/i3/wallpapers/nix-wallpaper-dracula.png";
}; };
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB