summaryrefslogtreecommitdiff
path: root/home-manager.nix
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2024-10-23 08:50:57 +0200
committerJasper Ras <jaspert.ras@gmail.com>2024-10-23 08:50:57 +0200
commitd9511a642b80c16db6508bc1f4b51f229c257b3a (patch)
treea9cdf25f7e0f74abc484cb45fce25ea86bf0853a /home-manager.nix
Initial commit
Diffstat (limited to 'home-manager.nix')
-rw-r--r--home-manager.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/home-manager.nix b/home-manager.nix
new file mode 100644
index 0000000..67ba932
--- /dev/null
+++ b/home-manager.nix
@@ -0,0 +1,7 @@
+{ config, pkgs, ...}: {
+ home-manager.users.jras = { pkgs, ... }: {
+ imports = ["/home/jras/home-manager/common.nix"];
+
+ home.stateVersion = "24.05";
+ };
+}