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
|
_: let
|
||||||
hostConfig = {tree, modulesPath, inputs, pkgs, ...}: {
|
hostConfig = {lib, tree, modulesPath, inputs, pkgs, ...}: let
|
||||||
|
inherit (lib.modules) mkForce;
|
||||||
|
in {
|
||||||
imports = with tree; [
|
imports = with tree; [
|
||||||
inputs.wsl.nixosModules.wsl
|
inputs.wsl.nixosModules.wsl
|
||||||
];
|
];
|
||||||
|
|
||||||
|
networking.firewall.enable = mkForce false;
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/sdc";
|
device = "/dev/sdc";
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ _: let
|
||||||
hostConfig = {tree, pkgs, ...}: {
|
hostConfig = {tree, pkgs, ...}: {
|
||||||
imports = with tree; [
|
imports = with tree; [
|
||||||
nixos.gui
|
nixos.gui
|
||||||
|
nixos.bootable
|
||||||
kat.gui
|
kat.gui
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ _: let
|
||||||
in {
|
in {
|
||||||
imports = with tree; [
|
imports = with tree; [
|
||||||
nixos.rosetta
|
nixos.rosetta
|
||||||
|
nixos.bootable
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue