mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
20 lines
269 B
Nix
20 lines
269 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./tofi.nix
|
|
./fonts.nix
|
|
./mako.nix
|
|
./niri
|
|
./swhkd.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
swww
|
|
kanshi
|
|
wlsunset
|
|
wayneko
|
|
];
|
|
home.file."scripts" = {
|
|
source = ./scripts;
|
|
recursive = true;
|
|
};
|
|
}
|