nixvimConfig/hosts/remus/home.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

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";
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
2024-07-13 11:48:05 +02:00
2024-03-27 23:45:23 +01:00
# # 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-13 11:38:17 +02:00
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
}