xplr, home.nix boilerplate

This commit is contained in:
notohh 2022-12-16 23:42:46 -05:00
parent 936ca8babb
commit 419c924d6c
3 changed files with 41 additions and 3 deletions

View file

@ -104,10 +104,9 @@
lazygit lazygit
# utility # utility
gnome.nautilus
waybar waybar
streamlink streamlink
ranger xplr
btop btop
nvtop nvtop
obsidian obsidian

View file

@ -40,7 +40,7 @@
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
modules = [./home-manager/home.nix ]; modules = [./home.nix];
}; };
}; };
}; };

39
home.nix Normal file
View file

@ -0,0 +1,39 @@
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{ inputs, outputs, lib, config, pkgs, ... }: {
# You can import other home-manager modules here
imports = [
];
nixpkgs = {
overlays = [
];
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
home = {
username = "notoh";
homeDirectory = "/home/notoh/";
};
programs.home-manager.enable = true;
programs.git.enable = true;
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.05";
}