diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-17 15:49:32 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-17 15:49:32 +0100 |
commit | 0df93e912e8644f2a93be0119296dbcb5ae06093 (patch) | |
tree | 89971a0a23d4bc183764b780fb464b5456d8040b /nixpkgs/kusanagi.nix | |
parent | d47dd5aa3882aea1a8eff4fb9faa4881274559dc (diff) | |
download | user-config-0df93e912e8644f2a93be0119296dbcb5ae06093.tar.gz user-config-0df93e912e8644f2a93be0119296dbcb5ae06093.zip |
Add zfs, unify home manager
Diffstat (limited to 'nixpkgs/kusanagi.nix')
-rw-r--r-- | nixpkgs/kusanagi.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nixpkgs/kusanagi.nix b/nixpkgs/kusanagi.nix new file mode 100644 index 0000000..6757886 --- /dev/null +++ b/nixpkgs/kusanagi.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + imports = [ + ./common.nix + ]; + + home.homeDirectory = "/home/lx"; + xdg.userDirs.download = "/home/lx/Downloads"; +} + |