mirror of
https://github.com/blahai/nyx.git
synced 2025-06-11 00:43:01 -04:00
horror
This commit is contained in:
parent
1a849c42af
commit
9376d6df40
4 changed files with 93 additions and 76 deletions
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
let
|
||||
moreWaita = pkgs.stdenv.mkDerivation {
|
||||
moreWaita = pkgs.stdenv.mkDerivation {
|
||||
name = "MoreWaita";
|
||||
src = inputs.more-waita;
|
||||
installPhase = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue