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