about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-11-11 07:41:48 +0000
committerDavid Morgan <djm_uk@protonmail.com>2022-11-11 07:41:48 +0000
commitcdd711f5a7094fabdfca253188ba85b7653788b2 (patch)
treef940f014e573b16c49a93a4bc360f5f00681c207
parentbfcc85e56cf00bc766209266f267728b46fcabe0 (diff)
downloaddotfiles-cdd711f5a7094fabdfca253188ba85b7653788b2.tar.gz
Add djmuk2 home config
-rw-r--r--nix-conf/home/djmuk2.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nix-conf/home/djmuk2.nix b/nix-conf/home/djmuk2.nix
new file mode 100644
index 0000000..b871056
--- /dev/null
+++ b/nix-conf/home/djmuk2.nix
@@ -0,0 +1,24 @@
+{ config, pkgs, ... }:
+{
+  imports = [ 
+    ./includes/linux-server.nix
+  ];
+
+  # Let Home Manager install and manage itself.
+  programs.home-manager.enable = true;
+
+  # Home Manager needs a bit of information about you and the
+  # paths it should manage.
+  home.username = "djm";
+  home.homeDirectory = "/home/djm";
+
+  # This value determines the Home Manager release that your
+  # configuration is compatible with. This helps avoid breakage
+  # when a new Home Manager release introduces backwards
+  # incompatible changes.
+  #
+  # You can update Home Manager without changing this value. See
+  # the Home Manager release notes for a list of state version
+  # changes in each release.
+  home.stateVersion = "22.05";
+}