citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

default.nix (1225B)


      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, ... }:
      5 
      6 {
      7   imports =
      8     [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
      9     ];
     10 
     11   boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "xhci_hcd" "firewire_ohci" "usb_storage" "usbhid" ];
     12   boot.kernelModules = [ "kvm-intel" ];
     13   boot.extraModulePackages = [ ];
     14   boot.loader.grub.device = "/dev/sda";
     15 
     16   fileSystems."/" = {
     17     device = "/dev/disk/by-uuid/4b076497-f2f8-4e3a-bd27-2874a4a0e361";
     18     fsType = "ext4";
     19     options = ["noatime" "nodiratime" "discard"];
     20   };
     21 
     22   fileSystems."/shares/turtlerock" = {
     23     device = "//192.168.1.66/Confidential\\040Share";
     24     fsType = "cifs";
     25     options = ["x-systemd.automount" "x-systemd.idle-timeout=1min" "username=bill" "password=connect123" "uid=1000" "gid=1000" "workgroup=WORKGROUP" "rw"];
     26   };
     27 
     28   fileSystems."/dropbox" = {
     29     device = "/dev/disk/by-label/vertex";
     30     fsType = "ext4";
     31     options = ["noatime" "nodiratime" "discard"];
     32   };
     33 
     34   # swapDevices =
     35   #   [ { device = "/dev/disk/by-uuid/d4e4ae51-9179-439d-925b-8df42dd1bfc5"; } ] ;
     36 }