added stuff
This commit is contained in:
parent
e8d9044d2b
commit
9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions
7
nyx/hosts/epimetheus/modules/default.nix
Normal file
7
nyx/hosts/epimetheus/modules/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./device.nix
|
||||
./system.nix
|
||||
./usrEnv.nix
|
||||
];
|
||||
}
|
11
nyx/hosts/epimetheus/modules/device.nix
Normal file
11
nyx/hosts/epimetheus/modules/device.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
config.modules.device = {
|
||||
type = "laptop";
|
||||
cpu.type = "intel";
|
||||
gpu.type = "hybrid-nv"; # nvidia drivers :b:roke
|
||||
monitors = ["eDP-1"];
|
||||
hasBluetooth = true;
|
||||
hasSound = true;
|
||||
hasTPM = true;
|
||||
};
|
||||
}
|
57
nyx/hosts/epimetheus/modules/system.nix
Normal file
57
nyx/hosts/epimetheus/modules/system.nix
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
config.modules.system = {
|
||||
mainUser = "notashelf";
|
||||
fs = ["btrfs" "ext4" "vfat"];
|
||||
autoLogin = true;
|
||||
|
||||
boot = {
|
||||
secureBoot = false;
|
||||
loader = "systemd-boot";
|
||||
enableKernelTweaks = true;
|
||||
initrd.enableTweaks = true;
|
||||
loadRecommendedModules = true;
|
||||
tmpOnTmpfs = true;
|
||||
};
|
||||
|
||||
encryption = {
|
||||
enable = true;
|
||||
device = "enc";
|
||||
};
|
||||
|
||||
video.enable = true;
|
||||
sound.enable = true;
|
||||
bluetooth.enable = false;
|
||||
printing.enable = false;
|
||||
emulation.enable = true;
|
||||
|
||||
networking = {
|
||||
optimizeTcp = true;
|
||||
};
|
||||
|
||||
security = {
|
||||
fixWebcam = false;
|
||||
};
|
||||
|
||||
virtualization = {
|
||||
enable = true;
|
||||
docker.enable = false;
|
||||
qemu.enable = true;
|
||||
podman.enable = false;
|
||||
};
|
||||
|
||||
programs = {
|
||||
git.signingKey = "0x05A3BD53FEB32B81";
|
||||
|
||||
cli.enable = true;
|
||||
gui.enable = true;
|
||||
|
||||
gaming = {
|
||||
enable = false;
|
||||
chess.enable = false;
|
||||
};
|
||||
default = {
|
||||
terminal = "foot";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
7
nyx/hosts/epimetheus/modules/usrEnv.nix
Normal file
7
nyx/hosts/epimetheus/modules/usrEnv.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
config.modules.usrEnv = {
|
||||
isWayland = true;
|
||||
desktop = "Hyprland";
|
||||
useHomeManager = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue