diff --git a/configuration.nix b/configuration.nix index 51fb9dd..b6009ae 100644 --- a/configuration.nix +++ b/configuration.nix @@ -104,10 +104,9 @@ lazygit # utility - gnome.nautilus waybar streamlink - ranger + xplr btop nvtop obsidian diff --git a/flake.nix b/flake.nix index 0f8baa3..0b34bc3 100644 --- a/flake.nix +++ b/flake.nix @@ -40,7 +40,7 @@ pkgs = nixpkgs.legacyPackages.x86_64-linux; extraSpecialArgs = { inherit inputs; }; - modules = [./home-manager/home.nix ]; + modules = [./home.nix]; }; }; }; diff --git a/home.nix b/home.nix new file mode 100644 index 0000000..f1ad3f7 --- /dev/null +++ b/home.nix @@ -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"; +} +