2024-03-25 12:37:10 +01:00
|
|
|
{
|
2024-07-03 00:38:20 +02:00
|
|
|
config,
|
|
|
|
|
pkgs,
|
2024-07-03 02:27:30 +02:00
|
|
|
inputs,
|
2024-07-03 00:38:20 +02:00
|
|
|
...
|
|
|
|
|
}: {
|
2024-03-27 23:45:23 +01:00
|
|
|
# home.username = "prunebutt";
|
|
|
|
|
# home.homeDirectory = "/home/prunebutt";
|
2024-07-03 00:38:20 +02:00
|
|
|
home = let
|
2024-03-27 23:45:23 +01:00
|
|
|
user = "prunebutt";
|
2024-07-03 02:27:30 +02:00
|
|
|
_inputs = inputs;
|
2024-03-27 23:45:23 +01:00
|
|
|
in {
|
|
|
|
|
username = "${user}";
|
|
|
|
|
homeDirectory = "/home/${user}";
|
|
|
|
|
# You should not change this value, even if you update Home Manager. If you do
|
|
|
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
|
|
|
# release notes.
|
|
|
|
|
stateVersion = "23.11"; # Please read the comment before changing.
|
|
|
|
|
|
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
|
|
|
# environment.
|
2024-07-03 02:27:30 +02:00
|
|
|
packages = [
|
2024-03-27 23:45:23 +01:00
|
|
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
|
|
|
|
# # overrides. You can do that directly here, just don't forget the
|
|
|
|
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
|
|
|
|
# # fonts?
|
|
|
|
|
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
|
|
|
|
|
|
|
|
|
# # You can also create simple shell scripts directly inside your
|
|
|
|
|
# # configuration. For example, this adds a command 'my-hello' to your
|
|
|
|
|
# # environment:
|
|
|
|
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
|
|
|
|
# echo "Hello, ${config.home.username}!"
|
|
|
|
|
# '')
|
|
|
|
|
|
|
|
|
|
## GNOME
|
2024-07-03 02:27:30 +02:00
|
|
|
|
|
|
|
|
inputs.nixvim-config.packages.${pkgs.system}.default
|
2024-03-27 23:45:23 +01:00
|
|
|
];
|
|
|
|
|
};
|
2024-03-26 18:28:27 +01:00
|
|
|
|
2024-05-09 19:41:05 +02:00
|
|
|
myHomeManager = {
|
|
|
|
|
bundles = {
|
|
|
|
|
desktop.enable = true;
|
|
|
|
|
maker.enable = true;
|
2024-05-11 12:30:05 +02:00
|
|
|
graphicDesign.enable = true;
|
2024-05-09 19:41:05 +02:00
|
|
|
};
|
|
|
|
|
};
|
2024-03-25 12:37:10 +01:00
|
|
|
|
|
|
|
|
programs.zsh.enable = true;
|
2024-07-03 00:38:20 +02:00
|
|
|
|
2024-03-25 12:37:10 +01:00
|
|
|
# Let Home Manager install and manage itself.
|
2024-03-27 23:45:23 +01:00
|
|
|
# programs.home-manager.enable = true;
|
2024-03-25 12:37:10 +01:00
|
|
|
}
|