This commit is contained in:
parent
679a090012
commit
8ca7b4c806
10 changed files with 44 additions and 64 deletions
|
@ -18,12 +18,6 @@
|
||||||
../../users/opdavies.nix
|
../../users/opdavies.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
features = {
|
|
||||||
desktop = {
|
|
||||||
dwm.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
auto-cpufreq.enable = true;
|
auto-cpufreq.enable = true;
|
||||||
geoclue2.enable = true;
|
geoclue2.enable = true;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./dwm
|
|
||||||
./gitea-actions-runner.nix
|
./gitea-actions-runner.nix
|
||||||
./nixpad
|
./nixpad
|
||||||
./podman.nix
|
./podman.nix
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
cfg = config.features.desktop.dwm;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.features.desktop.dwm.enable = mkEnableOption "Enable dwm";
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services = {
|
|
||||||
dwm-status = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
settings.order = [
|
|
||||||
"audio"
|
|
||||||
"battery"
|
|
||||||
"network"
|
|
||||||
"time"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
xserver.windowManager.dwm.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.user.services.dwm-status.serviceConfig.Restart = "on-failure";
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
dmenu
|
|
||||||
dmenu-bluetooth
|
|
||||||
dunst
|
|
||||||
networkmanager_dmenu
|
|
||||||
poweralertd
|
|
||||||
slock
|
|
||||||
xdotool
|
|
||||||
xwallpaper
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.users.opdavies =
|
|
||||||
{ config, ... }:
|
|
||||||
{
|
|
||||||
home = {
|
|
||||||
file."${config.home.sessionVariables.XINITRC}".source = ./xinitrc;
|
|
||||||
|
|
||||||
sessionVariables = {
|
|
||||||
XINITRC = "${config.xdg.configHome}/X11/xinitrc";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
11
modules2/dwm/config.nix
Normal file
11
modules2/dwm/config.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
flake.modules.homeManager.gui =
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
file."${config.home.sessionVariables.XINITRC}".source = ./xinitrc;
|
||||||
|
|
||||||
|
sessionVariables.XINITRC = "${config.xdg.configHome}/X11/xinitrc";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
8
modules2/dwm/dwm-status/order.nix
Normal file
8
modules2/dwm/dwm-status/order.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
flake.modules.nixos.pc.services.dwm-status.settings.order = [
|
||||||
|
"audio"
|
||||||
|
"battery"
|
||||||
|
"network"
|
||||||
|
"time"
|
||||||
|
];
|
||||||
|
}
|
3
modules2/dwm/dwm-status/restart.nix
Normal file
3
modules2/dwm/dwm-status/restart.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
flake.modules.nixos.pc.systemd.user.services.dwm-status.serviceConfig.Restart = "on-failure";
|
||||||
|
}
|
16
modules2/dwm/packages.nix
Normal file
16
modules2/dwm/packages.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
flake.modules.nixos.pc =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
dmenu
|
||||||
|
dmenu-bluetooth
|
||||||
|
dunst
|
||||||
|
networkmanager_dmenu
|
||||||
|
poweralertd
|
||||||
|
slock
|
||||||
|
xdotool
|
||||||
|
xwallpaper
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
3
modules2/hosts/t480/dwm/dwm-status.nix
Normal file
3
modules2/hosts/t480/dwm/dwm-status.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
flake.modules.nixos.pc.services.dwm-status.enable = true;
|
||||||
|
}
|
3
modules2/hosts/t480/dwm/dwm.nix
Normal file
3
modules2/hosts/t480/dwm/dwm.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
flake.modules.nixos.pc.services.xserver.windowManager.dwm.enable = true;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue