flake: rework modules folder structure
This commit is contained in:
parent
5d64c56d40
commit
0952665f6b
56 changed files with 3 additions and 3 deletions
36
modules/home/niri/niri.nix
Normal file
36
modules/home/niri/niri.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
swayosd
|
||||
fuzzel
|
||||
wl-clipboard
|
||||
wayland-utils
|
||||
libsecret
|
||||
xwayland-satellite-unstable
|
||||
playerctl
|
||||
pwvucontrol
|
||||
];
|
||||
|
||||
programs.swaylock = {
|
||||
enable = true;
|
||||
settings = builtins.fromJSON (builtins.readFile ./swaylock.json);
|
||||
};
|
||||
|
||||
services.mako = {
|
||||
enable = true;
|
||||
extraConfig = builtins.readFile ./mako.conf;
|
||||
};
|
||||
services.swayosd = {
|
||||
enable = true;
|
||||
};
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
settings = [
|
||||
(builtins.fromJSON (builtins.readFile ./waybar.json))
|
||||
];
|
||||
style = builtins.readFile ./waybar.css;
|
||||
};
|
||||
programs.wpaperd.enable = true;
|
||||
programs.niri.config = builtins.readFile ./config.kdl;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue