hosts: Add nishimiya
This commit is contained in:
parent
ee53170351
commit
880c11792f
@ -38,6 +38,9 @@
|
||||
mashu = mkSystem {
|
||||
hostConfigFile = ./hosts/mashu.nix;
|
||||
};
|
||||
nishimiya = mkSystem {
|
||||
hostConfigFile = ./hosts/nishimiya.nix;
|
||||
};
|
||||
};
|
||||
} // eachDefaultLinuxSystem (system: {
|
||||
packages = let
|
||||
|
97
hosts/nishimiya.nix
Normal file
97
hosts/nishimiya.nix
Normal file
@ -0,0 +1,97 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/d06b511d-1970-421d-b006-231a7af91942";
|
||||
fsType = "btrfs";
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/DFCE-FE5C";
|
||||
fsType = "vfat";
|
||||
};
|
||||
};
|
||||
swapDevices = [ ]; # TODO
|
||||
boot = {
|
||||
initrd = {
|
||||
availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||
kernelModules = [ "dm-snapshot" ];
|
||||
luks.devices = {
|
||||
cryptroot = {
|
||||
device = "/dev/disk/by-uuid/e1011c40-e1a9-4ce6-b89f-f14b046639c1";
|
||||
preLVM = false; # NOTE: Since this LUKS device is within an LVM group
|
||||
};
|
||||
};
|
||||
};
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
extraModulePackages = [ ];
|
||||
};
|
||||
|
||||
ptw = {
|
||||
programs = {
|
||||
alacritty.enable = true;
|
||||
sway.enable = true;
|
||||
emacs.enable = true;
|
||||
firefox.enable = true;
|
||||
tmux.enable = true;
|
||||
waybar = {
|
||||
enable = true;
|
||||
output = "eDP-1";
|
||||
};
|
||||
zsh.enable = true;
|
||||
};
|
||||
services = {
|
||||
kanshi = let
|
||||
helpers = import ../lib/helpers/kanshi.nix;
|
||||
mkProfile = helpers.mkProfile;
|
||||
wallpaperScript = helpers.mkWallpaperScript {
|
||||
inherit pkgs config;
|
||||
};
|
||||
in {
|
||||
enable = true;
|
||||
profiles = {
|
||||
home = mkProfile {
|
||||
outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
status = "enable";
|
||||
mode = "1920x1080";
|
||||
position = "0,0";
|
||||
}
|
||||
];
|
||||
name = "home";
|
||||
script = wallpaperScript;
|
||||
};
|
||||
};
|
||||
};
|
||||
swaync.enable = true;
|
||||
};
|
||||
system = {
|
||||
i18n.enable = true;
|
||||
singleUser = "alexander";
|
||||
hostName = "nishimiya";
|
||||
wireless = true;
|
||||
primaryInterface = "wlp5s0";
|
||||
};
|
||||
virtualisation.enable = true;
|
||||
hardware = {
|
||||
intel.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
layout = "de";
|
||||
libinput.enable = true;
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
wayland = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
gnupg.agent.pinentryFlavor = "qt";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user