feature/muffinman_implementation (#2)
Co-authored-by: MFlossmann <michael.flossmann@posteo.net> Reviewed-on: http://192.168.178.49:3000/prunebutt/nixConfig/pulls/2
This commit is contained in:
parent
bc0adb16e2
commit
b9a6e6052c
7 changed files with 230 additions and 4 deletions
50
hosts/muffinman/home.nix
Normal file
50
hosts/muffinman/home.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
# home.username = "prunebutt";
|
||||
# home.homeDirectory = "/home/prunebutt";
|
||||
home = let
|
||||
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 = "24.11"; # Please read the comment before changing.
|
||||
|
||||
# The home.packages option allows you to install Nix packages into your
|
||||
# environment.
|
||||
packages = [
|
||||
# # 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
|
||||
|
||||
inputs.nixvim-config.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
|
||||
# myHomeManager = {
|
||||
# bundles = {
|
||||
# };
|
||||
# };
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
# programs.home-manager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue