This commit is contained in:
m3tam3re
2024-08-28 16:16:23 +02:00
parent 8a69e8af95
commit 6a18670749
7 changed files with 54 additions and 17 deletions

View File

@ -1,10 +1,12 @@
# This is a default home.nix generated by the follwing hone-manager command
#
#
# home-manager init ./
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}: {
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = lib.mkDefault "your-name";
@ -21,7 +23,8 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
home.packages = with pkgs; [
cowsay
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello