43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
# This is your home-manager configuration file
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
# You can import other home-manager modules here
|
|
imports = [
|
|
# If you want to use modules your own flake exports (from modules/home-manager):
|
|
# outputs.homeManagerModules.example
|
|
|
|
# Or modules exported from other flakes (such as nix-colors):
|
|
# inputs.nix-colors.homeManagerModules.default
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
|
# ./nvim.nix
|
|
../../desktop
|
|
../../shared
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
r2modman
|
|
ryubing
|
|
lutris
|
|
vscodium
|
|
unrar
|
|
];
|
|
home.file = {
|
|
nextcloud = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "/run/media/lillian/big-SSD/Nextcloud/";
|
|
target = "Nextcloud";
|
|
};
|
|
};
|
|
|
|
programs.mangohud = {
|
|
enable = true;
|
|
# enableSessionWide = true;
|
|
};
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
home.stateVersion = "26.05";
|
|
}
|