From bc00e6f97b4bbeb530cdd5ec0b1f0fe8f830e262 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 10 Feb 2023 23:39:10 +0100 Subject: [PATCH] init --- home.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 home.nix diff --git a/home.nix b/home.nix new file mode 100644 index 0000000..c9371dd --- /dev/null +++ b/home.nix @@ -0,0 +1,27 @@ +{ config, pkgs, ... }: + +{ + # Home Manager needs a bit of information about you and the + # paths it should manage. + home.username = "cg"; + home.homeDirectory = "/home/cg"; + + # 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.11"; + + # Let Home Manager install and manage itself. + programs.home-manager.enable = true; + + home.packages = [ + pkgs.htop + pkgs.otpclient + pkgs.keepassxc + ]; +}