mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
Aly Raffauf
97db653259
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hd-ui-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* overlays: init with tablet overlays * flake: add overlays.tablet * overlays.tablet: document * pacifidlog: migrate to overlays.tablet * pacvifidlog: cleanup * overlays: add rofi-bluetooth * flake: output adjustor and hhd-ui * flake: reorg packages and overlays * flake.devShells.default: add nix-update * github: add adjustor and hhd-ui to ci * githuib: test builds * github: undo test change * pkgs: update descriptions * pkgs: reformat
66 lines
1.5 KiB
Nix
66 lines
1.5 KiB
Nix
{
|
|
config,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./home.nix
|
|
./raffauflabs.nix
|
|
./secrets.nix
|
|
(import ./../../disko/btrfs-subvolumes.nix {disks = ["/dev/sda"];})
|
|
self.nixosModules.common-auto-upgrade
|
|
self.nixosModules.common-base
|
|
self.nixosModules.common-locale
|
|
self.nixosModules.common-mauville-share
|
|
self.nixosModules.common-nix
|
|
self.nixosModules.common-pkgs
|
|
self.nixosModules.common-tailscale
|
|
self.nixosModules.common-wifi-profiles
|
|
self.nixosModules.hw-common-bluetooth
|
|
self.nixosModules.hw-common-intel-cpu
|
|
self.nixosModules.hw-common-intel-gpu
|
|
self.nixosModules.hw-common-ssd
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = ["xhci_pci" "ahci" "sd_mod"];
|
|
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = true;
|
|
};
|
|
};
|
|
|
|
hardware.enableAllFirmware = true;
|
|
networking.hostName = "slateport";
|
|
|
|
services = {
|
|
fwupd.enable = true;
|
|
syncthing.guiAddress = "0.0.0.0:8384";
|
|
};
|
|
|
|
stylix = {
|
|
enable = false;
|
|
image = "${self.inputs.wallpapers}/wallhaven-mp886k.jpg";
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
zramSwap.memoryPercent = 100;
|
|
|
|
ar = {
|
|
apps.podman.enable = true;
|
|
|
|
users.aly = {
|
|
enable = true;
|
|
password = "$y$j9T$Lit66g43.Zn60mwGig7cx1$L.aLzGvy0q.b1E40/XSIkhj2tkJbigpXFrxR/D/FVB4";
|
|
|
|
syncthing = {
|
|
enable = true;
|
|
certFile = config.age.secrets.syncthingCert.path;
|
|
keyFile = config.age.secrets.syncthingKey.path;
|
|
syncMusic = false;
|
|
};
|
|
};
|
|
};
|
|
}
|