wip: dnsc-machine setup
This commit is contained in:
parent
e9aa1cea4a
commit
cdf14bd461
5 changed files with 228 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
enable = true;
|
||||
|
||||
functions = {
|
||||
dbui = ''
|
||||
dbui = /*fish */ ''
|
||||
nvim +"DBUI"
|
||||
'';
|
||||
ff = ''
|
||||
|
|
|
|||
43
modules/wm/ironbar/default.nix
Normal file
43
modules/wm/ironbar/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.ironbar = {
|
||||
enable = true;
|
||||
systemd = true;
|
||||
config = {
|
||||
# An example:
|
||||
monitors = {
|
||||
DP-3 = {
|
||||
anchor_to_edges = true;
|
||||
position = "left";
|
||||
height = 16;
|
||||
start = [
|
||||
{ type = "workspaces"; }
|
||||
];
|
||||
center = [
|
||||
{ type = "focused"; }
|
||||
];
|
||||
end = [
|
||||
{ type = "volume"; }
|
||||
{
|
||||
type = "tray";
|
||||
icon_size = 16;
|
||||
}
|
||||
{ type = "clock"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
style = /* css */ ''
|
||||
/* An example */
|
||||
* {
|
||||
/* font-family: Noto Sans Nerd Font, sans-serif; */
|
||||
font-size: 14px;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
'';
|
||||
package = inputs.ironbar;
|
||||
features = ["feature" "another_feature"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue