This repository has been archived on 2024-01-21. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager-config/home.nix

25 lines
460 B
Nix
Raw 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
];
2022-06-12 23:15:28 +02:00
home.activation.fuckMicrosoft = dagEntryBefore ["checkLinkTargets"] ''
2021-06-25 11:04:47 +02:00
echo "Removing the crap some moronic apps are placing.."
find ~ -name "*.FUCK" -print -delete
'';
programs.home-manager = {
enable = true;
};
home.stateVersion = "19.03";
}