26 lines
372 B
Nix
26 lines
372 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../fuzzel
|
|
../../mako
|
|
../../shikane
|
|
../../waybar
|
|
];
|
|
|
|
home = {
|
|
file.".config/niri/config.kdl".source = ./config.kdl;
|
|
packages = with pkgs; [
|
|
wl-clipboard
|
|
wlsunset
|
|
];
|
|
};
|
|
|
|
services.gammastep = {
|
|
enable = true;
|
|
provider = "manual";
|
|
latitude = 51.05;
|
|
longitude = 3.71667;
|
|
};
|
|
}
|