37 lines
507 B
Nix
37 lines
507 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
home.username = "guest";
|
|
home.homeDirectory = "/home/guest";
|
|
|
|
imports = [
|
|
./minimal.nix
|
|
|
|
./firefox.nix
|
|
./fish.nix
|
|
./fonts.nix
|
|
./foot.nix
|
|
./gnome
|
|
./nvim
|
|
./tmux
|
|
./user-dirs.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
ffmpeg
|
|
keepassxc
|
|
mpv
|
|
qbittorrent
|
|
vlc
|
|
wl-clipboard
|
|
yt-dlp
|
|
];
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
}
|