refac: configure xmonad projects via host

This commit is contained in:
Dmitriy Pleshevskiy 2024-02-18 23:06:36 +03:00
parent 19dbd21f4b
commit f0f9961626
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
6 changed files with 85 additions and 67 deletions

View File

@ -1,4 +1,4 @@
{ lib, config, pkgs, ... }:
{ lib, config, ... }:
let
cfg = config.local.wezterm;

View File

@ -1,51 +1,87 @@
{ config, lib, pkgs, ... }:
{ config, pkgs, lib, ... }:
let themeCfg = config.local.theme; in
{
home.packages = with pkgs; [
xclip # access x clipboard from a console
dmenu # menu for x window system
nitrogen # wallpaper manager
];
let
cfg = config.local.xmonad;
themeCfg = config.local.theme;
xsession = {
enable = true;
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
haskellPackages = pkgs.unstable.haskellPackages;
extraPackages = (hp: [
hp.dbus
hp.monad-logger
]);
config = pkgs.substituteAll {
src = ./xmonad_config.hs;
inherit (themeCfg.bar) background mainText inactiveText;
inherit (themeCfg.window) activeBorder inactiveBorder;
inherit (themeCfg.highlights) critical warning success;
inherit (themeCfg.syntax) mark1 mark2 mark3;
kdbBrightnessScriptPath = "${./scripts/kdb_brightness.sh}";
projectType = with lib; types.submodule {
options = {
name = mkOption {
type = types.str;
};
startHook = mkOption {
type = types.lines;
};
};
initExtra = ''
${pkgs.nitrogen}/bin/nitrogen --restore &
'';
};
services.flameshot = {
enable = true;
mkXmonadProject = { name, startHook }:
''
Project {
projectName = "${name}",
projectStartHook = ${lib.removeSuffix startHook}
}
'';
# See: https://github.com/flameshot-org/flameshot/blob/master/flameshot.example.ini
settings = {
General = {
disabledTrayIcon = true;
savePathFixed = true;
showDesktopNotification = false;
showSidePanelButton = true;
xmonadProjects = lib.concatStringsSep ",\n" (map mkXmonadProject cfg.projects);
in
{
options.local.xmonad = with lib;
{
projects = mkOption {
type = types.listOf projectType;
default = [ ];
};
};
config = {
home.packages = with pkgs; [
xclip # access x clipboard from a console
dmenu # menu for x window system
nitrogen # wallpaper manager
];
xsession = {
enable = true;
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
haskellPackages = pkgs.unstable.haskellPackages;
extraPackages = (hp: [
hp.dbus
hp.monad-logger
]);
config = pkgs.substituteAll {
src = ./xmonad_config.hs;
projects = "\n" + xmonadProjects;
inherit (themeCfg.bar) background mainText inactiveText;
inherit (themeCfg.window) activeBorder inactiveBorder;
inherit (themeCfg.highlights) critical warning success;
inherit (themeCfg.syntax) mark1 mark2 mark3;
kdbBrightnessScriptPath = "${./scripts/kdb_brightness.sh}";
};
};
initExtra = ''
${pkgs.nitrogen}/bin/nitrogen --restore &
'';
};
services.flameshot = {
enable = true;
# See: https://github.com/flameshot-org/flameshot/blob/master/flameshot.example.ini
settings = {
General = {
disabledTrayIcon = true;
savePathFixed = true;
showDesktopNotification = false;
showSidePanelButton = true;
};
};
};
};

View File

@ -383,29 +383,7 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) =
myProjects :: [Project]
myProjects =
[ -- my work
Project
{ projectName = "bm-back",
projectStartHook = do
let workdir = "~/projects/binarymanagement/bm-back"
spawn $ terminal' workdir $ Just "docker-compose -f docker-compose.dev.yml up -d"
replicateM_ 3 $ spawn $ terminal workdir
},
Project
{ projectName = "bm-front",
projectStartHook = do
let workdir = "~/projects/binarymanagement/bm-front"
replicateM_ 3 $ spawn $ terminal workdir
},
-- personal
Project
{ projectName = "system",
projectStartHook = replicateM_ 2 $ spawn $ terminal "~/repos/mynix/system"
},
Project
{ projectName = "neovim",
projectStartHook = replicateM_ 2 $ spawn $ terminal "~/repos/mynix/neovim"
}
[ -- @projects@
]
where
terminal :: String -> String

Binary file not shown.

View File

@ -27,15 +27,17 @@ in
specialArgs = {
extraJanHomeModule = { lib, pkgs, ... }: {
imports = [ ./home/xmonad_projects.secret.nix ];
home.packages = lib.mkAfter (with pkgs.unstable; [
# 3d programs
blender
cura
godot_4
# electronics
kicad-small
# godot
godot_4
]);
};
};
};
@ -58,7 +60,9 @@ in
};
specialArgs = {
extraJanHomeModule = { ... }: { };
extraJanHomeModule = { lib, ... }: {
imports = [ ./asus-gl553vd/xmonad_projects.secret.nix ];
};
};
};

Binary file not shown.