move home.nix to home/regent, modify desktop modules a bit

This commit is contained in:
waveringana 2025-06-01 02:55:36 -04:00
parent 2830771b17
commit e701b607db
5 changed files with 81 additions and 6 deletions

37
home/regent/home.nix Normal file
View file

@ -0,0 +1,37 @@
{ config, pkgs, system, inputs, ... }:
{
home.username = "regent";
home.homeDirectory = "/home/regent";
catppuccin = {
enable = true;
flavor = "mocha";
accent = "blue";
};
programs.waybar = {
enable = true;
settings = {
mainBar = {
layer = "top";
position = "top";
height = 30;
output = [
"HDMI-A-1"
"DP-2"
];
modules-left = [ "sway/workspaces" "sway/mode" "wlr/taskbar" ];
modules-center = [ "sway/window" ];
modules-right = [ "mpd" ];
"sway/workspaces" = {
disable-scroll = true;
all-outputs = true;
};
};
};
};
home.stateVersion = "25.05";
}