mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: matrix cleanup automations, kde plasma
This commit is contained in:
parent
a07bdbcafb
commit
ed4defc62f
25 changed files with 521 additions and 100 deletions
|
|
@ -20,7 +20,7 @@ _: let
|
|||
secureboot
|
||||
])
|
||||
++ (with tree.nixos.environments; [
|
||||
xfce
|
||||
kde
|
||||
]);
|
||||
config = {
|
||||
home-manager.users.kat.imports =
|
||||
|
|
@ -29,7 +29,7 @@ _: let
|
|||
devops
|
||||
])
|
||||
++ (with tree.home.environments; [
|
||||
xfce
|
||||
kde
|
||||
]);
|
||||
|
||||
fileSystems = {
|
||||
|
|
@ -45,6 +45,30 @@ _: let
|
|||
|
||||
boot.extraModprobeConfig = "options snd_hda_intel power_save=0";
|
||||
|
||||
programs.ssh.extraConfig = ''
|
||||
Host daiyousei-build
|
||||
HostName 140.238.156.121
|
||||
User root
|
||||
IdentityAgent /run/user/1000/gnupg/S.gpg-agent.ssh
|
||||
'';
|
||||
|
||||
nix.buildMachines = [
|
||||
{
|
||||
hostName = "daiyousei-build";
|
||||
system = "aarch64-linux";
|
||||
protocol = "ssh-ng";
|
||||
maxJobs = 100;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
|
||||
mandatoryFeatures = [ ];
|
||||
}
|
||||
];
|
||||
|
||||
nix.distributedBuilds = true;
|
||||
# optional, useful when the builder has a faster internet connection than yours
|
||||
nix.extraOptions = ''
|
||||
builders-use-substitutes = true
|
||||
'';
|
||||
services.printing.enable = true;
|
||||
|
||||
services.hardware.bolt.enable = true;
|
||||
|
|
@ -54,7 +78,7 @@ _: let
|
|||
];
|
||||
|
||||
boot = {
|
||||
supportedFilesystems = ["ntfs"];
|
||||
supportedFilesystems = ["ntfs" "xfs"];
|
||||
};
|
||||
|
||||
networking = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue