Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit 68bebf8

Browse files
committed
Add nicerslicer
1 parent ff31640 commit 68bebf8

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

nicerslicer.nix

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Do not modify this file! It was generated by ‘nixos-generate-config’
2+
# and may be overwritten by future invocations. Please make changes
3+
# to /etc/nixos/configuration.nix instead.
4+
{ config, lib, pkgs, modulesPath, ... }:
5+
6+
{
7+
imports =
8+
[
9+
./common.nix
10+
(modulesPath + "/installer/scan/not-detected.nix")
11+
];
12+
13+
networking.hostName = "nicerslicer"; # Define your hostname.
14+
boot.plymouth.theme = "acidburn"; # TODO: xenia
15+
16+
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
17+
boot.initrd.kernelModules = [ ];
18+
boot.kernelModules = [ "kvm-intel" ];
19+
boot.extraModulePackages = [ ];
20+
21+
fileSystems."/" =
22+
{ device = "/dev/disk/by-uuid/168a42cf-44f0-49b9-8d6a-197e50858d3b";
23+
fsType = "btrfs";
24+
options = [ "subvol=@" ];
25+
};
26+
27+
fileSystems."/home" =
28+
{ device = "/dev/disk/by-uuid/168a42cf-44f0-49b9-8d6a-197e50858d3b";
29+
fsType = "btrfs";
30+
options = [ "subvol=@home" ];
31+
};
32+
33+
fileSystems."/boot" =
34+
{ device = "/dev/disk/by-uuid/21A5-75DE";
35+
fsType = "vfat";
36+
options = [ "fmask=0077" "dmask=0077" ];
37+
};
38+
39+
swapDevices = [ ];
40+
41+
environment.systemPackages = with pkgs; [
42+
cura
43+
orca-slicer
44+
freecad
45+
];
46+
}

0 commit comments

Comments
 (0)