Fixing Iso
This commit is contained in:
parent
21b2ab18af
commit
e6c2a77ad3
3 changed files with 19 additions and 10 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
description = "NixOS Configuration";
|
description = "Lyes' nix files";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
|
|
@ -38,8 +38,12 @@
|
||||||
desktop-iso = nixpkgs.lib.nixosSystem {
|
desktop-iso = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = inputs;
|
specialArgs = inputs;
|
||||||
modules = [ ./hosts/iso ];
|
modules = [ ./hosts/desktop-iso ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
packages."x86_64-linux" = {
|
||||||
|
desktop-iso = self.nixosConfigurations.desktop-iso.config.system.build.isoImage;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,21 @@
|
||||||
{ pkgs, lib, nix-flatpak, nixpkgs, ... }:
|
{ pkgs, lib, nix-flatpak, agenix, nixpkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
calamares-auto-start = pkgs.makeAutostartItem { name = "io.calamares.calamares"; package = pkgs.calamares-nixos; };
|
calamares-auto-start = pkgs.makeAutostartItem { name = "io.calamares.calamares"; package = pkgs.calamares-nixos; };
|
||||||
in {
|
in {
|
||||||
import =
|
imports =
|
||||||
[
|
[
|
||||||
|
../../users/lyes
|
||||||
|
../../users/lyes/desktop
|
||||||
|
|
||||||
../../modules
|
../../modules
|
||||||
../../modules/desktop
|
../../modules/desktop
|
||||||
../../modules/gaming
|
../../modules/gaming
|
||||||
../../modules/nvidia
|
../../modules/gnome
|
||||||
|
../../modules/sway
|
||||||
|
|
||||||
nix-flatpak.nixosModules.nix-flatpak
|
nix-flatpak.nixosModules.nix-flatpak
|
||||||
|
agenix.nixosModules.default
|
||||||
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
||||||
"${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix"
|
"${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix"
|
||||||
];
|
];
|
||||||
|
|
@ -127,11 +127,11 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
"dash-to-panel" = {
|
"dash-to-panel" = {
|
||||||
animate-appicon-hover-animation-extent = {
|
# animate-appicon-hover-animation-extent = {
|
||||||
RIPPLE = 4;
|
# RIPPLE = 4;
|
||||||
PLANK = 4;
|
# PLANK = 4;
|
||||||
SIMPLE = 1;
|
# SIMPLE = 1;
|
||||||
};
|
# };
|
||||||
appicon-margin = 0;
|
appicon-margin = 0;
|
||||||
appicon-padding = 4;
|
appicon-padding = 4;
|
||||||
appicon-style = "NORMAL";
|
appicon-style = "NORMAL";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue