add home.nix
This commit is contained in:
parent
8be3e48a3c
commit
2830771b17
1 changed files with 37 additions and 0 deletions
37
home.nix
Normal file
37
home.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue