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": {
"locked": {
"lastModified": 1657123678,
"narHash": "sha256-cowVkScfUPlbBXUp08MeVk/wgm9E1zp1uC+9no2hZYw=",
"lastModified": 1657296039,
"narHash": "sha256-Ghh39+aS+pw5sTP/ZO8VIKE6sBhMadDaQZtf+3yu4Vc=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "316b762afdb9e142a803f29c49a88b4a47db80ee",
"rev": "71d7a4c037dc4f3e98d5c4a81b941933cf5bf675",
"type": "github"
},
"original": {

View File

@ -10,10 +10,17 @@ in
./i3status-rust.nix
];
home.file.workspaces = {
source = ./workspaces;
target = ".config/i3/workspaces";
recursive = true;
home.file = {
workspaces = {
source = ./workspaces;
target = ".config/i3/workspaces";
recursive = true;
};
wallpapers = {
source = ./wallpapers;
target = ".config/i3/wallpapers";
recursive = true;
};
};
xsession.windowManager.i3 = {
@ -83,6 +90,6 @@ in
services.screen-locker = {
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