summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorGrigory Shipunov2022-06-11 23:28:31 +0200
committerGrigory Shipunov2022-06-11 23:28:31 +0200
commitf422ad701ce41373e7a293160faf5a19eeea19fa (patch)
tree411df2ce3e39385a9bae2c3010f4e090e92fad5b /hosts
parent3924624e7516464d2f24cd19b62c02072436850c (diff)
nixpkgs-fmt
Diffstat (limited to 'hosts')
-rw-r--r--hosts/microwave/configuration.nix16
-rw-r--r--hosts/microwave/hardware-configuration.nix24
2 files changed, 28 insertions, 12 deletions
diff --git a/hosts/microwave/configuration.nix b/hosts/microwave/configuration.nix
index 53464da..e3a629c 100644
--- a/hosts/microwave/configuration.nix
+++ b/hosts/microwave/configuration.nix
@@ -34,7 +34,7 @@
services.fstrim.enable = true;
boot = {
- supportedFilesystems = ["btrfs"];
+ supportedFilesystems = [ "btrfs" ];
# use systemd boot by default
loader = {
@@ -62,8 +62,16 @@
# Users
users.users.grue = {
createHome = true;
- extraGroups = [ "wheel" "networkmanager" "wireshark" "video"
- "libvirtd" "plugdev" "dialout" "bluetooth" ];
+ extraGroups = [
+ "wheel"
+ "networkmanager"
+ "wireshark"
+ "video"
+ "libvirtd"
+ "plugdev"
+ "dialout"
+ "bluetooth"
+ ];
group = "users";
home = "/home/grue";
isNormalUser = true;
@@ -75,6 +83,8 @@
package = pkgs.wireshark;
};
+
+ programs.steam.enable = true;
# 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
diff --git a/hosts/microwave/hardware-configuration.nix b/hosts/microwave/hardware-configuration.nix
index 13aefaa..0870699 100644
--- a/hosts/microwave/hardware-configuration.nix
+++ b/hosts/microwave/hardware-configuration.nix
@@ -5,7 +5,8 @@
{
imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
+ [
+ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
@@ -14,7 +15,8 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
- { device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
+ {
+ device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
fsType = "btrfs";
options = [ "subvol=root" "noatime" "compress=zstd" ];
};
@@ -22,26 +24,30 @@
boot.initrd.luks.devices."nixos-crypt".device = "/dev/disk/by-uuid/dbee4082-85ae-40f0-9c80-034f3574688f";
fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/4B02-CE16";
+ {
+ device = "/dev/disk/by-uuid/4B02-CE16";
fsType = "vfat";
};
fileSystems."/home" =
- { device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
+ {
+ device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
fsType = "btrfs";
- options = [ "subvol=home" "noatime" "compress=zstd" ];
+ options = [ "subvol=home" "noatime" "compress=zstd" ];
};
fileSystems."/nix" =
- { device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
+ {
+ device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
fsType = "btrfs";
- options = [ "subvol=nix" "noatime" "compress=zstd" ];
+ options = [ "subvol=nix" "noatime" "compress=zstd" ];
};
fileSystems."/tmp" =
- { device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
+ {
+ device = "/dev/disk/by-uuid/f9edd500-f47b-42e5-9b88-7b6d86f76caa";
fsType = "btrfs";
- options = [ "subvol=tmp" "noatime" "compress=zstd" ];
+ options = [ "subvol=tmp" "noatime" "compress=zstd" ];
};
# The global useDHCP flag is deprecated, therefore explicitly set to false here.