dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (342B)


      1 {
      2   modulesPath,
      3   sec,
      4   user,
      5   ...
      6 }:
      7 {
      8   imports = [
      9     sec.nixosModules.dot
     10 
     11     (modulesPath + "/profiles/qemu-guest.nix")
     12   ];
     13 
     14   disko.devices.disk.system.device = "/dev/vda";
     15 
     16   networking = {
     17     hostName = "vm";
     18     hostId = "522ef8a2";
     19   };
     20 
     21   home-manager.users.${user}.wayland.windowManager.hyprland.settings."$mod" = "ALT";
     22 }