-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf84b6f
commit 707feff
Showing
10 changed files
with
588 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,263 @@ | ||
# Edit this configuration file to define what should be installed on | ||
# your system. Help is available in the configuration.nix(5) man page | ||
# and in the NixOS manual (accessible by running ‘nixos-help’). | ||
{ | ||
flake, | ||
lib, | ||
pkgs, | ||
... | ||
}: let | ||
inherit (flake) inputs; | ||
inherit (inputs) self; | ||
in { | ||
imports = [ | ||
./hm.nix | ||
self.nixosModules.common | ||
self.nixosModules.default-linux | ||
self.nixosModules.linux-laptop | ||
|
||
# TODO: move to a module | ||
inputs.xremap-flake.nixosModules.default | ||
# Include the results of the hardware scan. | ||
./hardware.nix | ||
]; | ||
|
||
networking = { | ||
hostName = "asuna"; | ||
|
||
firewall = { | ||
# Open ports in the firewall. | ||
allowedTCPPorts = [22 8989 6881 8112 8096 8920]; | ||
allowedUDPPorts = [6881 1990 7359]; | ||
# Or disable the firewall altogether. | ||
enable = true; | ||
}; | ||
}; | ||
|
||
time = { | ||
# Set your time zone. | ||
timeZone = "Asia/Kuala_Lumpur"; | ||
hardwareClockInLocalTime = true; | ||
}; | ||
|
||
# Select internationalisation properties. | ||
i18n.defaultLocale = "en_US.UTF-8"; | ||
|
||
hardware = { | ||
opengl = { | ||
enable = true; | ||
extraPackages = with pkgs; [ | ||
# Vulkan | ||
#amdvlk # Outdated | ||
|
||
# VAAPI | ||
vaapiVdpau | ||
libvdpau-va-gl | ||
]; | ||
}; | ||
|
||
# bluetooth | ||
bluetooth = { | ||
enable = true; | ||
settings = { | ||
General = { | ||
Enable = "Source,Sink,Media,Socket"; | ||
}; | ||
}; | ||
}; | ||
pulseaudio.enable = false; | ||
}; | ||
|
||
services = { | ||
blueman.enable = true; | ||
|
||
# Enable CUPS to print documents. | ||
printing.enable = true; | ||
pipewire = { | ||
enable = true; | ||
audio.enable = true; | ||
wireplumber.enable = true; | ||
pulse.enable = true; | ||
alsa.enable = true; | ||
jack.enable = true; | ||
}; | ||
flatpak.enable = true; | ||
# to ease mount of usbs | ||
udisks2.enable = true; | ||
tailscale.enable = true; | ||
|
||
protonvpn = { | ||
enable = true; | ||
autostart = false; | ||
interface = { | ||
ip = "10.2.0.2/32"; | ||
privateKeyFile = "/etc/protonkey"; | ||
dns = { | ||
enable = true; | ||
ip = "10.2.0.1"; | ||
}; | ||
}; | ||
endpoint = { | ||
publicKey = "6vLkUgiS/K8p5dTMwUQo6tiyJ65DrM8E2mwO+QFz/zs="; | ||
ip = "138.199.21.206"; | ||
port = 51820; | ||
}; | ||
}; | ||
|
||
# TODO: move xremap to dedicated module | ||
xremap = { | ||
withHypr = true; | ||
config = { | ||
modmap = [ | ||
{ | ||
name = "Emacs pinky"; | ||
remap = { | ||
CapsLock = { | ||
held = "CTRL_L"; | ||
alone = "CapsLock"; | ||
alone_timeout_millis = 200; | ||
}; | ||
}; | ||
} | ||
]; | ||
}; | ||
userName = "luqman"; | ||
watch = true; | ||
}; | ||
|
||
# Enable the OpenSSH daemon. | ||
openssh.enable = true; | ||
resolved = { | ||
enable = true; | ||
fallbackDns = ["1.1.1.1" "8.8.8.8"]; | ||
}; | ||
|
||
logind = { | ||
lidSwitch = "ignore"; | ||
lidSwitchDocked = "ignore"; | ||
lidSwitchExternalPower = "ignore"; | ||
}; | ||
}; | ||
|
||
programs = { | ||
dconf.enable = true; | ||
light.enable = true; | ||
git.enable = true; | ||
adb.enable = true; | ||
command-not-found.enable = false; | ||
}; | ||
|
||
security = { | ||
rtkit.enable = true; | ||
|
||
pam.loginLimits = [ | ||
{ | ||
domain = "*"; | ||
type = "soft"; | ||
item = "nofile"; | ||
value = "8192"; | ||
} | ||
]; | ||
pam.services.swaylock = {}; | ||
sudo = { | ||
extraRules = [ | ||
{ | ||
users = ["luqman"]; | ||
commands = [ | ||
{ | ||
command = "ALL"; | ||
options = ["NOPASSWD"]; | ||
} | ||
]; | ||
} | ||
]; | ||
extraConfig = '' | ||
Defaults lecture = never | ||
''; | ||
}; | ||
}; | ||
|
||
# TODO: refactor into own module | ||
systemd.services.tailscale-funnel = { | ||
unitConfig = { | ||
Description = "Expose the jellyfin instance via tailscale"; | ||
After = ["tailscaled.service"]; | ||
}; | ||
|
||
serviceConfig = { | ||
ExecStart = "${pkgs.tailscale}/bin/tailscale funnel 8096"; | ||
Restart = "on-failure"; | ||
RestartSec = 3; | ||
}; | ||
|
||
wantedBy = ["multi-user.target"]; | ||
}; | ||
|
||
# TODO: refactor into own module | ||
console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-u28n.psf.gz"; | ||
|
||
environment.sessionVariables.NIXOS_OZONE_WL = "1"; | ||
|
||
# TODO: wth do i do with this? | ||
environment.systemPackages = with pkgs; [ | ||
wayland | ||
wayland.dev | ||
wayland-protocols | ||
wayland-utils | ||
wayland-scanner | ||
vim | ||
wget | ||
neovim | ||
git | ||
curl | ||
fish | ||
gcc | ||
clang | ||
python3 | ||
cloudflare-warp | ||
aria2 | ||
helvum | ||
ntfsprogs | ||
qemu | ||
( | ||
pkgs.writeShellScriptBin "qemu-system-x86_64-uefi" '' | ||
qemu-system-x86_64 \ | ||
-bios ${pkgs.OVMF.fd}/FV/OVMF.fd \ | ||
"$@" '' | ||
) | ||
podman-compose | ||
|
||
steam-tui | ||
steamcmd | ||
|
||
sbctl | ||
]; | ||
|
||
systemd = { | ||
}; | ||
|
||
virtualisation = { | ||
waydroid.enable = true; | ||
lxd.enable = true; | ||
podman = { | ||
enable = true; | ||
defaultNetwork.settings.dns_enabled = true; | ||
}; | ||
}; | ||
|
||
# zram swap | ||
zramSwap = { | ||
enable = true; | ||
swapDevices = 1; | ||
memoryPercent = 25; | ||
algorithm = "zstd"; | ||
}; | ||
|
||
# This value determines the NixOS release from which the default | ||
# settings for stateful data, like file locations and database versions | ||
# on your system were taken. It‘s perfectly fine and recommended to leave | ||
# this value at the release version of the first install of this system. | ||
# Before changing this value read the documentation for this option | ||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). | ||
system.stateVersion = "22.11"; # Did you read the comment? | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
{ | ||
config, | ||
pkgs, | ||
lib, | ||
modulesPath, | ||
... | ||
}: { | ||
imports = [ | ||
(modulesPath + "/installer/scan/not-detected.nix") | ||
]; | ||
|
||
boot = { | ||
# build stuff for rpi | ||
binfmt.emulatedSystems = ["aarch64-linux"]; | ||
|
||
loader = { | ||
systemd-boot.enable = true; | ||
systemd-boot.configurationLimit = 10; | ||
efi.canTouchEfiVariables = true; | ||
}; | ||
|
||
# use the latest zen kernel | ||
kernelPackages = pkgs.linuxPackages_zen; | ||
|
||
initrd = { | ||
# TODO: resetup impermeanance | ||
|
||
availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod"]; | ||
kernelModules = []; | ||
|
||
luks.devices."enc".device = "/dev/disk/by-uuid/2f22d311-7714-4816-a444-39c1b87fbe20"; | ||
}; | ||
|
||
kernelModules = ["kvm-amd"]; | ||
extraModulePackages = []; | ||
|
||
extraModprobeConfig = '' | ||
options snd-hda-intel model=auto,dell-headset-multi | ||
''; | ||
}; | ||
|
||
fileSystems = { | ||
"/" = { | ||
device = "/dev/disk/by-uuid/4552826e-cbe0-43c4-abd4-1d86248ac5ab"; | ||
fsType = "btrfs"; | ||
options = ["subvol=root" "compress=zstd" "noatime"]; | ||
}; | ||
|
||
"/home" = { | ||
device = "/dev/disk/by-uuid/4552826e-cbe0-43c4-abd4-1d86248ac5ab"; | ||
fsType = "btrfs"; | ||
options = ["subvol=home" "compress=zstd" "noatime"]; | ||
}; | ||
|
||
"/var/log" = { | ||
device = "/dev/disk/by-uuid/4552826e-cbe0-43c4-abd4-1d86248ac5ab"; | ||
fsType = "btrfs"; | ||
options = ["subvol=var/log" "compress=zstd" "noatime"]; | ||
}; | ||
|
||
"/var/lib" = { | ||
device = "/dev/disk/by-uuid/4552826e-cbe0-43c4-abd4-1d86248ac5ab"; | ||
fsType = "btrfs"; | ||
options = ["subvol=var/lib" "compress=zstd" "noatime"]; | ||
}; | ||
|
||
"/nix" = { | ||
device = "/dev/disk/by-uuid/4552826e-cbe0-43c4-abd4-1d86248ac5ab"; | ||
fsType = "btrfs"; | ||
options = ["subvol=nix" "compress=zstd" "noatime"]; | ||
}; | ||
|
||
"/boot" = { | ||
device = "/dev/disk/by-uuid/E8FE-853C"; | ||
fsType = "vfat"; | ||
}; | ||
|
||
"/mnt/windowsc" = { | ||
device = "/dev/disk/by-uuid/E48C23D68C23A1D2"; | ||
fsType = "ntfs"; | ||
options = ["nofail" "user" "exec" "rw" "uid=1000" "gid=1000"]; | ||
}; | ||
|
||
"/mnt/storage2/jellyfin" = { | ||
device = "/dev/disk/by-uuid/39ea80c4-e748-47eb-835c-64025de53e26"; | ||
fsType = "btrfs"; | ||
options = ["subvol=jellyfin" "compress=zstd" "rw" "user" "exec" "nofail"]; | ||
}; | ||
|
||
"/mnt/storage2/rustic-repo" = { | ||
device = "/dev/disk/by-uuid/39ea80c4-e748-47eb-835c-64025de53e26"; | ||
fsType = "btrfs"; | ||
options = ["subvol=rustic-repo" "compress=zstd" "rw" "user" "exec" "nofail"]; | ||
}; | ||
|
||
"/mnt/storage2/games" = { | ||
device = "/dev/disk/by-uuid/39ea80c4-e748-47eb-835c-64025de53e26"; | ||
fsType = "btrfs"; | ||
options = ["subvol=games" "compress=zstd" "rw" "user" "exec" "nofail"]; | ||
}; | ||
}; | ||
swapDevices = []; | ||
|
||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking | ||
# (the default) this is the recommended approach. When using systemd-networkd it's | ||
# still possible to use this option, but it's recommended to use it in conjunction | ||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. | ||
networking.useDHCP = lib.mkDefault true; | ||
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true; | ||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; | ||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{flake, ...}: let | ||
inherit (flake) inputs; | ||
inherit (inputs) self; | ||
in { | ||
# Enable home-manager for "runner" user | ||
home-manager.users."runner" = { | ||
imports = [(self + /configurations/home/runner.nix)]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ | |
./all/terminals/kitty.nix | ||
./all/tools/fonts.nix | ||
]; | ||
|
||
modules.terminals.kitty.fontSize = 12.0; | ||
} |
Oops, something went wrong.