Backup before server rebuild
This commit is contained in:
parent
ad4b1b1de4
commit
fbcdcf6cfd
24 changed files with 515 additions and 404 deletions
common
|
@ -1,8 +1,10 @@
|
|||
# This directory contains modules which can be loaded on both nixos and home-manager!
|
||||
{
|
||||
imports = [ ./fonts.nix ./themes ];
|
||||
imports = [
|
||||
./fonts.nix
|
||||
./themes
|
||||
./nixpkgs.nix
|
||||
];
|
||||
|
||||
# {{{ ad-hoc toggles
|
||||
satellite.toggles.neovim-nightly.enable = false;
|
||||
# }}}
|
||||
satellite.toggles.neovim-nightly.enable = true;
|
||||
}
|
||||
|
|
17
common/nixpkgs.nix
Normal file
17
common/nixpkgs.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ outputs, ... }:
|
||||
{
|
||||
nixpkgs = {
|
||||
# Add all overlays defined in the overlays directory
|
||||
overlays = builtins.attrValues outputs.overlays;
|
||||
|
||||
config.allowUnfree = true;
|
||||
|
||||
config.permittedInsecurePackages = [
|
||||
"electron-25.9.0"
|
||||
"nix-2.15.3"
|
||||
"dotnet-runtime-6.0.36"
|
||||
"dotnet-sdk-wrapped-6.0.428"
|
||||
"dotnet-sdk-6.0.428"
|
||||
];
|
||||
};
|
||||
}
|
|
@ -24,7 +24,7 @@ let
|
|||
# {{{ Catppuccin latte
|
||||
catppuccin-latte = {
|
||||
stylix = {
|
||||
image = ./wallpapers/needygirloverdose.jpg;
|
||||
image = ./wallpapers/sketchy-peaks.png;
|
||||
base16Scheme = base16 "catppuccin-latte";
|
||||
opacity = transparency 0.7;
|
||||
polarity = "light";
|
||||
|
@ -96,6 +96,8 @@ in
|
|||
}
|
||||
];
|
||||
|
||||
stylix.enable = true;
|
||||
|
||||
# Requires me to manually turn targets on!
|
||||
stylix.autoEnable = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue