Compare commits
2 commits
f1b45216e9
...
e047cc1f13
Author | SHA1 | Date | |
---|---|---|---|
e047cc1f13 | |||
214b7df232 |
4 changed files with 4 additions and 8 deletions
|
@ -5,14 +5,11 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
toCSS = import ./tocss.nix;
|
||||
toCSS = import ./tocss.nix { inherit pkgs; };
|
||||
in
|
||||
lib.mkIf config.programs.waybar.enable {
|
||||
programs.waybar = {
|
||||
style = toCSS {
|
||||
inherit pkgs;
|
||||
file = ./style.scss;
|
||||
};
|
||||
style = toCSS ./style.scss;
|
||||
settings = {
|
||||
main = import ./config.nix { inherit pkgs; };
|
||||
};
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs, file, ... }:
|
||||
{ pkgs, ... }:
|
||||
file:
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "toCSS";
|
||||
buildCommand = ''
|
||||
|
|
|
@ -8,7 +8,6 @@ in
|
|||
services.dbus.implementation = lib.mkForce "dbus";
|
||||
|
||||
programs.uwsm = {
|
||||
enable = true;
|
||||
waylandCompositors = {
|
||||
hyprland = mkIf config.programs.hyprland.enable {
|
||||
prettyName = "Hyprland";
|
||||
|
|
|
@ -8,7 +8,6 @@ let
|
|||
inherit (lib) mkOption;
|
||||
in
|
||||
{
|
||||
|
||||
systemdHardening = {
|
||||
IPAddressDeny = "any";
|
||||
NoNewPrivileges = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue