This commit is contained in:
blahai 2024-09-17 19:55:45 +03:00
parent 1a849c42af
commit 9376d6df40
No known key found for this signature in database
4 changed files with 93 additions and 76 deletions

View file

@ -8,6 +8,8 @@
inputs.home-manager.nixosModules.default
];
documentation.nixos.enable = false;
boot = {
tmp.cleanOnBoot = true;
loader = {
@ -79,6 +81,8 @@
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
verbose = true;
users = {
"pingu" = import ./home.nix;
};
@ -139,8 +143,18 @@
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
substituters = [
"https://hyprland.cachix.org"
"https://cache.nixos.org"
"https://nixpkgs-wayland.cachix.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
trusted-users = [ "@wheel" "pingu" "root" ];
};
gc = {
@ -193,7 +207,7 @@
material-design-icons
material-symbols
ddcutil
(python312.withPackages (ps: with ps; [
(python311.withPackages (ps: with ps; [
pillow
material-color-utilities
materialyoucolor

View file

@ -1,6 +1,6 @@
{ inputs, config, pkgs, ... }:
let
moreWaita = pkgs.stdenv.mkDerivation {
moreWaita = pkgs.stdenv.mkDerivation {
name = "MoreWaita";
src = inputs.more-waita;
installPhase = ''