[home] split out home-manager from configuration

This commit is contained in:
2024-06-28 03:04:24 +08:00
parent 28810c407b
commit 6f9de6434c
8 changed files with 23 additions and 18 deletions
+26
View File
@@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
home.username = "origami";
home.homeDirectory = "/home/origami";
programs.home-manager.enable = true;
imports = [
(import ./modules/shell.nix)
(import ./modules/desktop.nix)
(import ./modules/develop.nix)
(import ./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";
}