mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 14:54:38 -05:00
223 current 2024-09-02 16:18:24 24.11.20240831.12228ff 6.11.0-rc5 *
This commit is contained in:
parent
82a8661ec1
commit
6514aaea5a
2 changed files with 11 additions and 8 deletions
|
@ -80,6 +80,7 @@ in
|
|||
boot.loader.grub.efiSupport = true;
|
||||
boot.loader.grub.useOSProber = true;
|
||||
boot.loader.grub.efiInstallAsRemovable = true;
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
# add user to "openrazer" group
|
||||
hardware.openrazer.enable = true;
|
||||
hardware.openrazer.users = [ "meyer" ];
|
||||
|
|
18
flake.nix
18
flake.nix
|
@ -23,14 +23,16 @@
|
|||
{
|
||||
nixosConfigurations = {
|
||||
desktopIso = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
./boxes/desktop/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
({ pkgs, modulesPath, ...}: {
|
||||
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")];
|
||||
})
|
||||
];
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
# ./boxes/desktop/configuration.nix
|
||||
# inputs.home-manager.nixosModules.default
|
||||
({ pkgs, modulesPath, ... }: {
|
||||
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
|
||||
boot.kernelPackages = pkgs.linuxPackages_testing;
|
||||
nixpkgs.config.allowBroken = true;
|
||||
})
|
||||
];
|
||||
};
|
||||
desktop = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
|
|
Loading…
Reference in a new issue