File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 35
35
{
36
36
inherit nil ;
37
37
38
+ installer-iso = ( upkgs . callPackage ./installer { inherit ( inputs . nixpkgs . lib ) nixosSystem ; } ) . config . system . build . isoImage ;
39
+
38
40
advcp = upkgs . callPackage ./advcp { } ;
39
41
"dracula/konsole" = upkgs . callPackage ./dracula/konsole { } ;
40
42
emacs = epkgs . emacs-unstable ;
Original file line number Diff line number Diff line change
1
+ {
2
+ nixosSystem ,
3
+ system ,
4
+ } :
5
+ nixosSystem {
6
+ inherit system ;
7
+
8
+ modules = [
9
+ ( { modulesPath , ...} : {
10
+ imports = [
11
+ "${ modulesPath } /installer/cd-dvd/installation-cd-graphical-plasma5.nix"
12
+ ] ;
13
+
14
+ services . lvm = {
15
+ boot . thin . enable = true ;
16
+ boot . vdo . enable = true ;
17
+ dmeventd . enable = true ;
18
+ } ;
19
+
20
+ isoImage . squashfsCompression = "zstd -Xcompression-level 10" ;
21
+ } )
22
+ ] ;
23
+ }
You can’t perform that action at this time.
0 commit comments