add some userdata

This commit is contained in:
MFlossmann 2024-03-26 18:28:27 +01:00
parent 1e86b2dca4
commit b4c2ba8174
2 changed files with 18 additions and 3 deletions

View file

@ -17,12 +17,12 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
home.packages = with pkgs; [
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
pkgs.nerdfonts
nerdfonts
# # 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
@ -35,6 +35,18 @@
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
# Core
ranger
## GNOME
gnomeExtensions.gsconnect
gnomeExtensions.syncthing-icon
# Maker
freecad
# Development
lazygit
];
programs.zsh.enable = true;