xplr, home.nix boilerplate
This commit is contained in:
parent
936ca8babb
commit
419c924d6c
3 changed files with 41 additions and 3 deletions
|
@ -104,10 +104,9 @@
|
|||
lazygit
|
||||
|
||||
# utility
|
||||
gnome.nautilus
|
||||
waybar
|
||||
streamlink
|
||||
ranger
|
||||
xplr
|
||||
btop
|
||||
nvtop
|
||||
obsidian
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
|
||||
modules = [./home-manager/home.nix ];
|
||||
modules = [./home.nix];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
39
home.nix
Normal file
39
home.nix
Normal 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";
|
||||
}
|
||||
|
Loading…
Reference in a new issue