mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-20 03:34:07 +02:00
Added a installers for a more arch
This commit is contained in:
parent
82910f5ef3
commit
c9325b0a29
4 changed files with 71 additions and 0 deletions
1
result
Symbolic link
1
result
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/nix/store/7lypww5jq6imzplrz3v3ql3j626kbzbq-nixos-23.05.20230312.5a1dc8a-aarch64-linux.isonixos.iso
|
35
systems/i686-install-iso/graphical-i686/default.nix
Normal file
35
systems/i686-install-iso/graphical-i686/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ pkgs, config, lib, channel, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
#with lib.internal;
|
||||||
|
{
|
||||||
|
networking.networkmanager.enable = true;
|
||||||
|
networking.wireless.enable = mkForce false;
|
||||||
|
|
||||||
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gparted
|
||||||
|
parted
|
||||||
|
gnufdisk
|
||||||
|
partition-manager
|
||||||
|
];
|
||||||
|
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
dconf.enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# System
|
||||||
|
custom.system.boot.uboot.enable = true;
|
||||||
|
custom.system.ssh.enable = true;
|
||||||
|
custom.nix.enable = true;
|
||||||
|
custom.hardware.audio.enable = true;
|
||||||
|
custom.desktop.plasma.enable = true;
|
||||||
|
|
||||||
|
# User
|
||||||
|
custom.user.jopejoe1.enable = true;
|
||||||
|
custom.user.root.enable = true;
|
||||||
|
}
|
35
systems/x86_64-install-iso/graphical-x86_64/default.nix
Normal file
35
systems/x86_64-install-iso/graphical-x86_64/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ pkgs, config, lib, channel, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
#with lib.internal;
|
||||||
|
{
|
||||||
|
networking.networkmanager.enable = true;
|
||||||
|
networking.wireless.enable = mkForce false;
|
||||||
|
|
||||||
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gparted
|
||||||
|
parted
|
||||||
|
gnufdisk
|
||||||
|
partition-manager
|
||||||
|
];
|
||||||
|
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
dconf.enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# System
|
||||||
|
custom.system.boot.uboot.enable = true;
|
||||||
|
custom.system.ssh.enable = true;
|
||||||
|
custom.nix.enable = true;
|
||||||
|
custom.hardware.audio.enable = true;
|
||||||
|
custom.desktop.plasma.enable = true;
|
||||||
|
|
||||||
|
# User
|
||||||
|
custom.user.jopejoe1.enable = true;
|
||||||
|
custom.user.root.enable = true;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue