stuff
This commit is contained in:
parent
ed13a64d87
commit
d998fe6155
7 changed files with 47 additions and 20 deletions
|
|
@ -23,18 +23,16 @@
|
|||
enable = true;
|
||||
theme = "bgrt";
|
||||
package = pkgs.plymouth.overrideAttrs (old: {
|
||||
postInstall = (old.postInstall or "") + ''
|
||||
sed -i \
|
||||
-e 's/DialogClearsFirmwareBackground=true/DialogClearsFirmwareBackground=false/' \
|
||||
-e 's/DialogVerticalAlignment=.382/DialogVerticalAlignment=.55/' \
|
||||
-e 's/TitleVerticalAlignment=.382/TitleVerticalAlignment=.55/' \
|
||||
$out/share/plymouth/themes/bgrt/bgrt.plymouth
|
||||
'';
|
||||
});
|
||||
postInstall = (old.postInstall or "") + ''
|
||||
sed -i \
|
||||
-e 's/DialogClearsFirmwareBackground=true/DialogClearsFirmwareBackground=false/' \
|
||||
-e 's/DialogVerticalAlignment=.382/DialogVerticalAlignment=.55/' \
|
||||
-e 's/TitleVerticalAlignment=.382/TitleVerticalAlignment=.55/' \
|
||||
$out/share/plymouth/themes/bgrt/bgrt.plymouth
|
||||
'';
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
|
@ -76,11 +74,20 @@
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
|
||||
programs.firefox.enable = true;
|
||||
|
||||
programs.virt-manager.enable = true;
|
||||
virtualisation.libvirtd.enable = true;
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
autoPrune = {
|
||||
dates = "weekly";
|
||||
};
|
||||
};
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
auto-optimise-store = true;
|
||||
|
|
@ -112,7 +119,7 @@
|
|||
8080
|
||||
];
|
||||
networking.firewall.allowedUDPPorts = [ 8080 ];
|
||||
networking.firewall.trustedInterfaces = [ "virbr0" ];
|
||||
networking.firewall.trustedInterfaces = [ "virbr0" "docker0" ];
|
||||
|
||||
system.stateVersion = "26.05"; # yes
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue