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";
|
|
|
|
}
|