Compare commits

..

No commits in common. "7d2771d133e8da2fa7ef8c9d7daa0f9ac3ee3070" and "195f941fadf62c40b1104dc38615cddbb39dbd07" have entirely different histories.

6 changed files with 15 additions and 35 deletions

24
flake.lock generated
View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1736373539,
"narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=",
"lastModified": 1735344290,
"narHash": "sha256-oJDtWPH1oJT34RJK1FSWjwX4qcGOBRkcNQPD0EbSfNM=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "bd65bc3cde04c16755955630b344bc9e35272c56",
"rev": "613691f285dad87694c2ba1c9e6298d04736292d",
"type": "github"
},
"original": {
@ -28,11 +28,11 @@
]
},
"locked": {
"lastModified": 1735772949,
"narHash": "sha256-lvee0rhKTpJEDl1SC4F3Kvz88snOU8OMTJBsPH1pVBo=",
"lastModified": 1734848678,
"narHash": "sha256-HtGPXGyzOsHJLq6nwvBV763y6l7fC9FuWIM0hNh1Y6E=",
"owner": "musnix",
"repo": "musnix",
"rev": "86ef22cbdd7551ef325bce88143be9f37da64c26",
"rev": "e76b3cdd23d49a11210a551f8ea4d49d7022e639",
"type": "github"
},
"original": {
@ -43,11 +43,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1738435198,
"narHash": "sha256-5+Hmo4nbqw8FrW85FlNm4IIrRnZ7bn0cmXlScNsNRLo=",
"lastModified": 1735264675,
"narHash": "sha256-MgdXpeX2GuJbtlBrH9EdsUeWl/yXEubyvxM1G+yO4Ak=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "f6687779bf4c396250831aa5a32cbfeb85bb07a3",
"rev": "d49da4c08359e3c39c4e27c74ac7ac9b70085966",
"type": "github"
},
"original": {
@ -72,11 +72,11 @@
]
},
"locked": {
"lastModified": 1738291974,
"narHash": "sha256-wkwYJc8cKmmQWUloyS9KwttBnja2ONRuJQDEsmef320=",
"lastModified": 1734546875,
"narHash": "sha256-6OvJbqQ6qPpNw3CA+W8Myo5aaLhIJY/nNFDk3zMXLfM=",
"owner": "Mic92",
"repo": "sops-nix",
"rev": "4c1251904d8a08c86ac6bc0d72cc09975e89aef7",
"rev": "ed091321f4dd88afc28b5b4456e0a15bd8374b4d",
"type": "github"
},
"original": {

View File

@ -31,7 +31,6 @@
"samsung-UnifiedLinuxDriver"
"steam"
"steam-unwrapped"
"stm32cubemx"
];
};
};

View File

@ -40,7 +40,7 @@ in {
discord
libreoffice-fresh
mate.caja
mate.atril
libsForQt5.okular
mpv
gimp
freecad
@ -53,7 +53,6 @@ in {
gimp
godot_4
ripgrep-all
stm32cubemx
];
};
}

View File

@ -104,23 +104,6 @@ in {
};
thunderbird.enable = true;
};
"max mkaenner" = {
address = "max@mkaenner.de";
aliases = ["admin@mkaenner.de"];
userName = "max@mkaenner.de";
realName = "Max Känner";
imap = {
host = "mail.mkaenner.de";
port = 993;
tls.enable = true;
};
smtp = {
host = "mail.mkaenner.de";
port = 465;
tls.enable = true;
};
thunderbird.enable = true;
};
};
programs.thunderbird = {

View File

@ -11,10 +11,9 @@ in {
config = lib.mkIf cfg.enable {
nix.settings = {
substituters = ["https://nix-community.cachix.org/" "https://nixpkgs-python.cachix.org/"];
substituters = ["https://nix-community.cachix.org"];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU="
];
};
};

View File

@ -13,7 +13,7 @@ in {
config = lib.mkIf cfg.enable {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [libclang stdenv.cc.cc];
libraries = with pkgs; [];
};
};
}