mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
guh
This commit is contained in:
parent
f4b0cb805b
commit
82a8661ec1
3 changed files with 13 additions and 3 deletions
|
@ -76,7 +76,7 @@ in
|
||||||
};
|
};
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.grub.device = "nodev";
|
boot.loader.grub.device = "nodev";
|
||||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
boot.kernelPackages = pkgs.linuxPackages_testing;
|
||||||
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;
|
||||||
|
|
|
@ -18,12 +18,12 @@ in
|
||||||
gradle
|
gradle
|
||||||
lazygit
|
lazygit
|
||||||
linuxHeaders
|
linuxHeaders
|
||||||
nodePackages.eslint
|
eslint
|
||||||
nodePackages.nodemon
|
nodePackages.nodemon
|
||||||
nodePackages.ts-node
|
nodePackages.ts-node
|
||||||
nodePackages.pnpm
|
nodePackages.pnpm
|
||||||
corepack_22
|
corepack_22
|
||||||
nodePackages.prisma
|
prisma
|
||||||
prisma-engines
|
prisma-engines
|
||||||
nodePackages.live-server
|
nodePackages.live-server
|
||||||
gh
|
gh
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -22,6 +22,16 @@
|
||||||
# in
|
# in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
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")];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
desktop = nixpkgs.lib.nixosSystem {
|
desktop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
Loading…
Reference in a new issue