nix-config/home/adalbert.nix

47 lines
868 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
inputs,
outputs,
...
2023-12-27 10:31:23 +01:00
}: let
in {
2023-12-24 11:16:59 +01:00
imports = [
./global
2023-12-26 22:32:45 +01:00
./features/desktop/awesome
2023-12-26 13:59:30 +01:00
./features/games
./features/coding
2023-12-27 10:31:23 +01:00
inputs.nix-colors.homeManagerModules.default
2023-12-24 11:16:59 +01:00
];
2023-12-27 10:31:23 +01:00
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
2023-12-24 11:16:59 +01:00
# wallpaper = outputs.wallpapers.cyberpunk-city-red;
#
# # ------ ----- ------
# # | DP-3 | | DP-1| | DP-2 |
# # ------ ----- ------
# monitors = [
# {
# name = "DP-3";
# width = 1920;
# height = 1080;
# x = 0;
# workspace = "3";
# enabled = false;
# }
# {
# name = "DP-1";
# width = 2560;
# height = 1080;
# x = 1920;
# workspace = "1";
# primary = true;
# }
# {
# name = "DP-2";
# width = 1920;
# height = 1080;
# x = 4480;
# workspace = "2";
# }
# ];
}