Files
flake/home/um790.nix
T
2024-06-28 09:09:54 +08:00

28 lines
581 B
Nix

{ config, lib, pkgs, ... }:
{
home.username = "origami";
home.homeDirectory = "/home/origami";
programs.home-manager.enable = true;
imports = [
./modules/shell.nix
./modules/desktop.nix
./modules/shell-develop.nix
./modules/vscode.nix
./modules/gnome-dconf.nix
];
nixpkgs.config.allowUnfreePredicate = _: true;
home.packages = with pkgs;[
# system call monitoring
strace # system call monitoring
ltrace # library call monitoring
lsof # list open files
];
programs.nix-index.enable = true;
home.stateVersion = "23.11";
}