(common) formatting
This commit is contained in:
parent
5e8895dc4d
commit
17e08d3a3b
7 changed files with 171 additions and 164 deletions
|
@ -1,12 +1,14 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
# ./hardware-configuration.nix
|
||||
];
|
||||
|
||||
|
@ -23,7 +25,6 @@
|
|||
defaultGateway.address = "192.168.1.1";
|
||||
};
|
||||
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
# environment.systemPackages = with pkgs; [
|
||||
|
@ -110,5 +111,4 @@ services.logind.lidSwitch = "ignore";
|
|||
systemd.targets.hybrid-sleep.enable = false;
|
||||
|
||||
system.stateVersion = "24.05"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "sd_mod" "rtsx_pci_sdmmc"];
|
||||
|
@ -13,26 +17,26 @@
|
|||
boot.kernelModules = ["kvm-intel"];
|
||||
boot.extraModulePackages = [];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@"];
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@home"];
|
||||
};
|
||||
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/d857aa86-e441-4b4b-84d7-f718099c9d81";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@nix"];
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/12CE-A600";
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/12CE-A600";
|
||||
fsType = "vfat";
|
||||
options = ["fmask=0022" "dmask=0022"];
|
||||
};
|
||||
|
|
|
@ -122,7 +122,6 @@
|
|||
liveRestore = false; # NOTE: Incompatible with swarm
|
||||
};
|
||||
programs = {
|
||||
|
||||
nh = {
|
||||
enable = true;
|
||||
clean.enable = true;
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
# ./hardware-configuration.nix
|
||||
];
|
||||
|
||||
|
@ -23,7 +25,6 @@
|
|||
defaultGateway.address = "192.168.1.1";
|
||||
};
|
||||
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
# environment.systemPackages = with pkgs; [
|
||||
|
@ -109,5 +110,4 @@ services.logind.lidSwitch = "ignore";
|
|||
# system.copySystemConfiguration = true;
|
||||
|
||||
system.stateVersion = "24.05"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "sd_mod" "usbhid" "sd_mod"];
|
||||
|
@ -13,32 +17,32 @@
|
|||
boot.kernelModules = ["kvm-intel"];
|
||||
boot.extraModulePackages = [];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@" "noatime" "space_cache=v2" "compress=zstd"];
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@home" "noatime" "space_cache=v2" "compress=zstd"];
|
||||
};
|
||||
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/8fe40009-64b9-4f75-8cfe-d73560e3c7d0";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@nix" "noatime" "space_cache=v2" "compress=zstd"];
|
||||
};
|
||||
|
||||
fileSystems."/data" =
|
||||
{ device = "/dev/disk/by-uuid/d57652b7-5506-4cdd-8694-90bcd4810d7b";
|
||||
fileSystems."/data" = {
|
||||
device = "/dev/disk/by-uuid/d57652b7-5506-4cdd-8694-90bcd4810d7b";
|
||||
fsType = "btrfs";
|
||||
options = ["noatime" "space_cache=v2" "compress=zstd"];
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/8BA9-84E8";
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/8BA9-84E8";
|
||||
fsType = "vfat";
|
||||
options = ["fmask=0022" "dmask=0022"];
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue