Add Colmena to manage systems, use better pathing for smallfetch, use better mountpoints and hostnames from Colema
This commit is contained in:
parent
215ad6b1a7
commit
1f7d01bb4d
53 changed files with 254 additions and 166 deletions
8
modules/home/wms/programs/wallpapers/default.nix
Normal file
8
modules/home/wms/programs/wallpapers/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
imports = [ ./wpaperd ];
|
||||
|
||||
config = lib.mkIf config.home.desktop.enable {
|
||||
home.file.".wallpapers".source = ./photos;
|
||||
};
|
||||
}
|
BIN
modules/home/wms/programs/wallpapers/photos/1.png
Normal file
BIN
modules/home/wms/programs/wallpapers/photos/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 MiB |
BIN
modules/home/wms/programs/wallpapers/photos/2.png
Normal file
BIN
modules/home/wms/programs/wallpapers/photos/2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
BIN
modules/home/wms/programs/wallpapers/photos/3.png
Normal file
BIN
modules/home/wms/programs/wallpapers/photos/3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
BIN
modules/home/wms/programs/wallpapers/photos/lock.png
Normal file
BIN
modules/home/wms/programs/wallpapers/photos/lock.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 314 KiB |
12
modules/home/wms/programs/wallpapers/wpaperd/default.nix
Normal file
12
modules/home/wms/programs/wallpapers/wpaperd/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
services.wpaperd = {
|
||||
enable = config.home.desktop.enable;
|
||||
settings = {
|
||||
default.mode = "center";
|
||||
any.path = ".wallpapers/1.png";
|
||||
"${config.displays.tower2}".path = ".wallpapers/2.png";
|
||||
"${config.displays.tower3}".path = ".wallpapers/3.png";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue