home-manager-config/home.nix

26 lines
514 B
Nix
Raw Permalink Normal View History

2021-06-25 11:04:47 +02:00
{ pkgs, config, ... }:
with import <nixpkgs> {};
with builtins;
with lib;
with import <home-manager/modules/lib/dag.nix> { inherit lib; };
{
imports =
[
./modules/includes.nix
];
2023-03-23 22:12:13 +01:00
# @Reference doesn't work with new versions
2022-12-14 12:39:31 +01:00
# home.activation.fuckMicrosoft = dagEntryBefore ["checkLinkTargets"] ''
# echo "Removing the crap some moronic apps are placing.."
# find ~ -name "*.FUCK" -print -delete
# '';
2021-06-25 11:04:47 +02:00
programs.home-manager = {
enable = true;
};
home.stateVersion = "19.03";
}