Compare commits
2 Commits
549a4bb8e3
...
c7cb38ad3c
Author | SHA1 | Date |
---|---|---|
mandlm | c7cb38ad3c | |
mandlm | bde774e71d |
|
@ -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": {
|
||||||
|
|
|
@ -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 |
Loading…
Reference in New Issue