ironbar: remove
This commit is contained in:
parent
0ef9168c3c
commit
fc289afb0a
3 changed files with 0 additions and 50 deletions
|
@ -1,28 +0,0 @@
|
|||
_: {
|
||||
programs.ironbar.config = let
|
||||
nixlogo = rec {
|
||||
type = "custom";
|
||||
name = "nixlogo";
|
||||
class = name;
|
||||
bar = [
|
||||
{
|
||||
type = "image";
|
||||
src = "https://files.artturin.com/files/nixoscolorful.svg";
|
||||
size = 24;
|
||||
}
|
||||
];
|
||||
};
|
||||
tray = {type = "tray";};
|
||||
clock = {type = "clock";};
|
||||
in {
|
||||
monitors = {
|
||||
"DP-2" = {
|
||||
position = "top";
|
||||
anchor_to_edges = true;
|
||||
start = [nixlogo];
|
||||
center = [];
|
||||
end = [clock tray];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
compileSCSS = name: source: "${pkgs.runCommandLocal name {} ''
|
||||
mkdir -p $out
|
||||
${lib.getExe pkgs.sass} '${source}' > $out/${name}.css
|
||||
''}/${name}.css";
|
||||
in {
|
||||
imports = [inputs.ironbar.homeManagerModules.default ./config.nix];
|
||||
|
||||
programs.ironbar = {
|
||||
enable = true;
|
||||
systemd = true;
|
||||
style = builtins.readFile (compileSCSS "style" ./style.scss);
|
||||
};
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
* {
|
||||
all: unset;
|
||||
}
|
Loading…
Reference in a new issue