mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-18 21:27:56 +08:00
25 lines
347 B
Nix
25 lines
347 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./tofi.nix
|
|
./fonts.nix
|
|
./mako.nix
|
|
./niri
|
|
./swhkd.nix
|
|
./scroll
|
|
./mango
|
|
];
|
|
home.packages = with pkgs; [
|
|
swww
|
|
swaybg
|
|
kanshi
|
|
wlsunset
|
|
wayneko
|
|
xwayland-satellite
|
|
wmname
|
|
];
|
|
home.file."scripts" = {
|
|
source = ./scripts;
|
|
recursive = true;
|
|
};
|
|
}
|