mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-08 12:17:25 +08:00
21 lines
284 B
Nix
21 lines
284 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./tofi.nix
|
|
./fonts.nix
|
|
./mako.nix
|
|
./niri
|
|
./swhkd.nix
|
|
./maomaowm
|
|
];
|
|
home.packages = with pkgs; [
|
|
swww
|
|
kanshi
|
|
wlsunset
|
|
wayneko
|
|
];
|
|
home.file."scripts" = {
|
|
source = ./scripts;
|
|
recursive = true;
|
|
};
|
|
}
|