mrdavid.r: init

This commit is contained in:
makefu 2023-07-10 18:33:40 +02:00
parent 5f84990f9d
commit aab03f0f14
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 34 additions and 0 deletions
1systems/mrdavid

View file

@ -0,0 +1,29 @@
{ config, pkgs, lib, self, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware.nix
../../2configs/default.nix
# ../../2configs/nur.nix
# ../../2configs/nur.nix
../../2configs/home-manager
../../2configs/main-laptop.nix
../../2configs/editor/neovim
../../2configs/tools/core.nix
# ../../2configs/tools/all.nix
((import ../../2configs/fs/disko/single-disk-ext4.nix ) { disk = "/dev/sda"; })
# hardware specifics are in here
../../2configs/zsh-user.nix
../../2configs/home-manager
../../2configs/home-manager/desktop.nix
../../2configs/home-manager/cli.nix
# ../../2configs/tinc/retiolum.nix
];
nixpkgs.config.allowUnfree = true;
}

View file

@ -0,0 +1,5 @@
{ lib, ... }:
{
imports = [ ];
hardware.enableRedistributableFirmware = true;
}