mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -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.efiSupport = true;
|
||||||
boot.loader.grub.useOSProber = true;
|
boot.loader.grub.useOSProber = true;
|
||||||
boot.loader.grub.efiInstallAsRemovable = true;
|
boot.loader.grub.efiInstallAsRemovable = true;
|
||||||
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
# add user to "openrazer" group
|
# add user to "openrazer" group
|
||||||
hardware.openrazer.enable = true;
|
hardware.openrazer.enable = true;
|
||||||
hardware.openrazer.users = [ "meyer" ];
|
hardware.openrazer.users = [ "meyer" ];
|
||||||
|
|
18
flake.nix
18
flake.nix
|
@ -23,14 +23,16 @@
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
desktopIso = nixpkgs.lib.nixosSystem {
|
desktopIso = nixpkgs.lib.nixosSystem {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./boxes/desktop/configuration.nix
|
# ./boxes/desktop/configuration.nix
|
||||||
inputs.home-manager.nixosModules.default
|
# inputs.home-manager.nixosModules.default
|
||||||
({ pkgs, modulesPath, ...}: {
|
({ pkgs, modulesPath, ... }: {
|
||||||
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")];
|
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
|
||||||
})
|
boot.kernelPackages = pkgs.linuxPackages_testing;
|
||||||
];
|
nixpkgs.config.allowBroken = true;
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
desktop = nixpkgs.lib.nixosSystem {
|
desktop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
|
|
Loading…
Reference in a new issue