purge home-manager
This commit is contained in:
parent
46f14be415
commit
3bc2bf3fc5
7 changed files with 19 additions and 342 deletions
|
@ -71,9 +71,6 @@ in {
|
||||||
desktops.hyprland.enable = true;
|
desktops.hyprland.enable = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
launchers = {
|
|
||||||
fuzzel.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
media = {
|
media = {
|
||||||
beets.enable = true;
|
beets.enable = true;
|
||||||
|
@ -110,12 +107,8 @@ in {
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
nh.enable = true;
|
nh.enable = true;
|
||||||
waybar.enable = true;
|
|
||||||
# steam.enable = true;
|
# steam.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
|
||||||
dunst.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ in {
|
||||||
users = mkOption {
|
users = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
default = ["charlie"];
|
default = ["charlie"];
|
||||||
description = "A list of home-manager users on the system.";
|
description = "A list of users on the system.";
|
||||||
};
|
};
|
||||||
|
|
||||||
autoLogin = mkOption {
|
autoLogin = mkOption {
|
||||||
|
|
|
@ -4,7 +4,6 @@ _: {
|
||||||
./foot.nix
|
./foot.nix
|
||||||
./spicetify.nix
|
./spicetify.nix
|
||||||
./steam.nix
|
./steam.nix
|
||||||
./waybar.nix
|
|
||||||
./schizofox.nix
|
./schizofox.nix
|
||||||
./minecraft.nix
|
./minecraft.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,325 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
cfg = config.modules.programs.waybar;
|
|
||||||
inherit (config.modules.other.system) username;
|
|
||||||
in {
|
|
||||||
options.modules.programs.waybar.enable = lib.mkEnableOption "waybar";
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
home-manager.users.${username} = {
|
|
||||||
programs.waybar = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.waybar;
|
|
||||||
settings.mainBar = {
|
|
||||||
gtk-layer-shell = true;
|
|
||||||
layer = "top";
|
|
||||||
position = "bottom";
|
|
||||||
modules-left = ["tray" "mpd"];
|
|
||||||
modules-center = ["hyprland/workspaces"];
|
|
||||||
modules-right = [
|
|
||||||
"memory"
|
|
||||||
"pulseaudio"
|
|
||||||
"clock"
|
|
||||||
"backlight"
|
|
||||||
"battery"
|
|
||||||
];
|
|
||||||
|
|
||||||
pulseaudio = {
|
|
||||||
tooltip = false;
|
|
||||||
scroll-step = "1";
|
|
||||||
format = " {icon} {volume}%";
|
|
||||||
format-muted = " {volume}%";
|
|
||||||
format-icons = {default = ["" "" ""];};
|
|
||||||
on-click = "${pkgs.wireplumber}/bin/wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
|
||||||
};
|
|
||||||
|
|
||||||
"hyprland/workspaces" = {
|
|
||||||
sort-by-name = true;
|
|
||||||
sort-by-coordinates = false;
|
|
||||||
on-click = "activate";
|
|
||||||
#on-scroll = "~/Scripts/cycle_workspace.sh 1";
|
|
||||||
active-only = true;
|
|
||||||
format = "{icon}";
|
|
||||||
format-icons = {
|
|
||||||
"1" = "1";
|
|
||||||
"2" = "2";
|
|
||||||
"3" = "3";
|
|
||||||
"4" = "4";
|
|
||||||
"5" = "5";
|
|
||||||
"6" = "6";
|
|
||||||
"7" = "7";
|
|
||||||
"8" = "8";
|
|
||||||
"9" = "9";
|
|
||||||
"10" = "10";
|
|
||||||
"11" = "1";
|
|
||||||
"12" = "2";
|
|
||||||
"13" = "3";
|
|
||||||
"14" = "4";
|
|
||||||
"15" = "5";
|
|
||||||
"16" = "6";
|
|
||||||
"17" = "7";
|
|
||||||
"18" = "8";
|
|
||||||
"19" = "9";
|
|
||||||
"20" = "10";
|
|
||||||
"21" = "1";
|
|
||||||
"22" = "2";
|
|
||||||
"23" = "3";
|
|
||||||
"24" = "4";
|
|
||||||
"25" = "5";
|
|
||||||
"26" = "6";
|
|
||||||
"27" = "7";
|
|
||||||
"28" = "8";
|
|
||||||
"29" = "9";
|
|
||||||
"30" = "10";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
tray = {
|
|
||||||
icon-size = 12;
|
|
||||||
spacing = 5;
|
|
||||||
};
|
|
||||||
|
|
||||||
#
|
|
||||||
clock = {
|
|
||||||
interval = 1;
|
|
||||||
format = " {:%a %d %b %H:%M:%S}";
|
|
||||||
};
|
|
||||||
|
|
||||||
battery = {
|
|
||||||
interval = 10;
|
|
||||||
states = {
|
|
||||||
good = 75;
|
|
||||||
warning = 20;
|
|
||||||
critical = 10;
|
|
||||||
};
|
|
||||||
format = "{icon}{capacity}%";
|
|
||||||
format-charging = "{icon}{capacity}%";
|
|
||||||
format-discharging = "{icon}{capacity}%";
|
|
||||||
format-icons = ["" "" "" "" "" "" "" "" "" "" ""];
|
|
||||||
format-charging-icons = ["" "" "" "" "" "" "" "" "" "" ""];
|
|
||||||
};
|
|
||||||
|
|
||||||
cpu = {
|
|
||||||
interval = 1;
|
|
||||||
format = " {}%";
|
|
||||||
max-length = 10;
|
|
||||||
};
|
|
||||||
|
|
||||||
memory = {
|
|
||||||
interval = 1;
|
|
||||||
format = " {}%";
|
|
||||||
max-length = 10;
|
|
||||||
};
|
|
||||||
"hyprland/window" = {
|
|
||||||
format = "{}";
|
|
||||||
separate-outputs = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
mpd = {
|
|
||||||
format = " {artist} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S})";
|
|
||||||
format-disconnected = " Disconnected";
|
|
||||||
format-stopped = " Stopped";
|
|
||||||
interval = 1;
|
|
||||||
tooltip-format = "MPD (connected)";
|
|
||||||
tooltip-format-disconnected = "MPD (disconnected)";
|
|
||||||
on-click = "mpc toggle";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
style = ''
|
|
||||||
@define-color base #000000;
|
|
||||||
@define-color inactive #ab8f44;
|
|
||||||
@define-color active #1565c0;
|
|
||||||
|
|
||||||
@define-color text #ffffff;
|
|
||||||
|
|
||||||
* {
|
|
||||||
border-radius: 1px;
|
|
||||||
font-family: ComicShannsMono Nerd Font;
|
|
||||||
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background-color: alpha(@base, 1.0);
|
|
||||||
border-radius: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.hidden {
|
|
||||||
opacity: 0.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
padding-left: 2px;
|
|
||||||
padding-right: 2px;
|
|
||||||
background: @base;
|
|
||||||
color: @text;
|
|
||||||
font-family: ComicShannsMono Nerd Font;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
border-radius: 0px;
|
|
||||||
padding-top: 0px;
|
|
||||||
padding-right: 0px;
|
|
||||||
padding-bottom: 0px;
|
|
||||||
padding-left: 0px;
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-right: 2px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
margin-left: 2px;
|
|
||||||
background-color: @inactive;
|
|
||||||
color: @text;
|
|
||||||
min-width: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
padding-top: 0px;
|
|
||||||
padding-bottom: 0px;
|
|
||||||
padding-right: 0px;
|
|
||||||
padding-left: 0px;
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-right: 2px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
margin-left: 2px;
|
|
||||||
background-color: @active;
|
|
||||||
color: @base;
|
|
||||||
min-width: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.urgent {
|
|
||||||
background-color: @red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modules-left > widget:first-child > #workspaces {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modules-right > widget:first-child > #workspaces {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio {
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
margin-left: 2px;
|
|
||||||
margin-right: 2px;
|
|
||||||
padding-left: 0px;
|
|
||||||
padding-right: 0px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
#memory {
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
#battery {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
to {
|
|
||||||
background-color: @red;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging, #battery.plugged {
|
|
||||||
background-color: @base;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
background-color: @base;
|
|
||||||
animation-name: blink;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
#backlight {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
color: @yellow;
|
|
||||||
}
|
|
||||||
#clock {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition-property: min-width;
|
|
||||||
transition-duration: 0.5s;
|
|
||||||
background: @base;
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray {
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
margin-left: 2px;
|
|
||||||
padding-left: 2px;
|
|
||||||
padding-right: 2px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-power {
|
|
||||||
font-size: 20px;
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
margin-right: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
color: @red;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#custom-media {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition: none;
|
|
||||||
background: @mantle;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mpd {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
margin-left: 8px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
transition: none;
|
|
||||||
background: @base;
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -18,13 +18,6 @@ in {
|
||||||
|
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
enableZshIntegration = true;
|
|
||||||
};
|
|
||||||
home-manager.users.${username} = {
|
|
||||||
programs.direnv = {
|
|
||||||
# yes stupid direnv does _not_ work with nushell in nixos options
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
17
modules/services/mako.nix
Normal file
17
modules/services/mako.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{pkgs, ...}: let
|
||||||
|
mako-wrapped = pkgs.symlinkJoin {
|
||||||
|
name = "mako-wrapped";
|
||||||
|
paths = [pkgs.mako];
|
||||||
|
buildInputs = [pkgs.makeWrapper];
|
||||||
|
postBuild = ''
|
||||||
|
wrapProgram $out/bin/mako --add-flags "\
|
||||||
|
--font 'Lexend 11' \
|
||||||
|
--border-radius 8 \
|
||||||
|
--padding 8 \
|
||||||
|
--border-size 5 \
|
||||||
|
--default-timeout 4000"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
environment.systemPackages = [mako-wrapped];
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ _: {
|
||||||
./locate.nix
|
./locate.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./greetd.nix
|
./greetd.nix
|
||||||
./dunst.nix
|
./mako.nix
|
||||||
./mpd.nix
|
./mpd.nix
|
||||||
./firewall.nix
|
./firewall.nix
|
||||||
./kmscon.nix
|
./kmscon.nix
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue