mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: bootable
This commit is contained in:
parent
ec29a3e56c
commit
a7cd9846a1
4 changed files with 7 additions and 1 deletions
|
|
@ -1,9 +1,13 @@
|
|||
_: let
|
||||
hostConfig = {tree, modulesPath, inputs, pkgs, ...}: {
|
||||
hostConfig = {lib, tree, modulesPath, inputs, pkgs, ...}: let
|
||||
inherit (lib.modules) mkForce;
|
||||
in {
|
||||
imports = with tree; [
|
||||
inputs.wsl.nixosModules.wsl
|
||||
];
|
||||
|
||||
networking.firewall.enable = mkForce false;
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/sdc";
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ _: let
|
|||
hostConfig = {tree, pkgs, ...}: {
|
||||
imports = with tree; [
|
||||
nixos.gui
|
||||
nixos.bootable
|
||||
kat.gui
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ _: let
|
|||
in {
|
||||
imports = with tree; [
|
||||
nixos.rosetta
|
||||
nixos.bootable
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue