2023-10-26 16:48:06 +02:00
|
|
|
# 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 = [
|
|
|
|
# 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
|
2024-02-07 13:50:03 +01:00
|
|
|
../../desktop
|
|
|
|
./package-configs/plasma-desktop
|
2023-10-26 16:48:06 +02:00
|
|
|
];
|
|
|
|
|
2023-11-14 11:37:10 +01:00
|
|
|
home.packages = with pkgs; [
|
2024-01-05 12:41:08 +01:00
|
|
|
heroic
|
2024-02-04 23:28:13 +01:00
|
|
|
r2modman
|
2023-11-14 11:37:10 +01:00
|
|
|
];
|
|
|
|
|
2024-03-03 16:49:53 +01:00
|
|
|
programs.mangohud = {
|
|
|
|
enable = true;
|
|
|
|
enableSessionWide = true;
|
|
|
|
};
|
|
|
|
|
2023-10-26 16:48:06 +02:00
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
2024-01-06 16:14:46 +01:00
|
|
|
home.stateVersion = "24.05";
|
2023-10-26 16:48:06 +02:00
|
|
|
}
|