summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal/default.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-22 22:39:56 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-28 17:47:49 +0100
commit70d60e5ee6d1092f765807b8483c9c16d2afa678 (patch)
treeedeb7a91de348d6fc5dd0e43b9ca7bef794b322c /modules/home-manager/personal/default.nix
parentbbb2f5e7cefb970b3e4994ee51bb2c3a18a073c2 (diff)
add home-manager modules
Diffstat (limited to 'modules/home-manager/personal/default.nix')
-rw-r--r--modules/home-manager/personal/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/home-manager/personal/default.nix b/modules/home-manager/personal/default.nix
new file mode 100644
index 0000000..dcd7500
--- /dev/null
+++ b/modules/home-manager/personal/default.nix
@@ -0,0 +1,15 @@
+{ ... }:
+
+{
+ imports = [ ./dotfiles ./environment.nix ./gui ./profiles.nix ./programs ];
+
+ # 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 = "23.05";
+}