Add initial ll-nixos-live configuration
This commit is contained in:
parent
670e1126a9
commit
8f9d015748
3 changed files with 88 additions and 0 deletions
|
@ -133,6 +133,12 @@
|
||||||
modules = [ ./systems/ll-latitude-e5591/configuration.nix ];
|
modules = [ ./systems/ll-latitude-e5591/configuration.nix ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ll-nixos-live = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
specialArgs = { inherit self inputs pkgs-unstable; };
|
||||||
|
modules = [ ./systems/ll-nixos-live/configuration.nix ];
|
||||||
|
};
|
||||||
|
|
||||||
redoubt = nixpkgs.lib.nixosSystem {
|
redoubt = nixpkgs.lib.nixosSystem {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
specialArgs = { inherit self inputs pkgs-unstable; };
|
specialArgs = { inherit self inputs pkgs-unstable; };
|
||||||
|
|
59
systems/ll-nixos-live/configuration.nix
Normal file
59
systems/ll-nixos-live/configuration.nix
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{ inputs, self, pkgs, pkgs-unstable, config, ... }: {
|
||||||
|
networking.hostName = "ll-nixos-live";
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
users."lauren_lagarde" = {
|
||||||
|
imports = self.homeManagerModules."lauren_lagarde@gui.mlaga97.space" ++ [
|
||||||
|
./home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
extraSpecialArgs = { inherit self pkgs-unstable; };
|
||||||
|
};
|
||||||
|
|
||||||
|
time.timeZone = "America/Chicago";
|
||||||
|
sops.defaultSopsFile = ../../secrets.yaml;
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
inputs.waveforms.nixosModule
|
||||||
|
inputs.disko.nixosModules.default
|
||||||
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
inputs.lix-module.nixosModules.default
|
||||||
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
|
||||||
|
# Core Features
|
||||||
|
../../nixos/features/base.nix
|
||||||
|
../../nixos/features/tui-apps.nix
|
||||||
|
../../nixos/features/openssh-server.nix
|
||||||
|
|
||||||
|
# Core Tweaks
|
||||||
|
../../nixos/tweaks/zram.nix
|
||||||
|
../../nixos/tweaks/enable_flakes.nix
|
||||||
|
../../nixos/tweaks/disable_nixos_user.nix
|
||||||
|
../../nixos/tweaks/systemd-resolved_nonsense.nix
|
||||||
|
|
||||||
|
# Lauren Base
|
||||||
|
../../users/lauren_lagarde/lauren_lagarde.nix
|
||||||
|
|
||||||
|
# i3wm
|
||||||
|
../../nixos/features/i3wm.nix
|
||||||
|
../../nixos/features/hardware/yubikey.nix
|
||||||
|
../../nixos/tweaks/bluetooth.nix
|
||||||
|
../../nixos/tweaks/intel_igpu_screen_tearing.nix
|
||||||
|
|
||||||
|
# Dotspace
|
||||||
|
../../secrets/dotspace.nix
|
||||||
|
../../secrets/dotspace_shares.nix
|
||||||
|
../../nixos/features/stronghold-binary-cache.nix
|
||||||
|
|
||||||
|
# Additional Software
|
||||||
|
../../nixos/features/embedded.nix
|
||||||
|
../../nixos/features/hardware/rtl-sdr.nix
|
||||||
|
../../nixos/features/hardware/printing.nix
|
||||||
|
../../nixos/tweaks/aarch64-crosscompile.nix
|
||||||
|
../../nixos/features/virtualization/docker.nix
|
||||||
|
../../nixos/features/virtualization/libvirt-host.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
services.autorandr.enable = true;
|
||||||
|
services.udev.packages = with pkgs; [ autorandr ];
|
||||||
|
}
|
23
systems/ll-nixos-live/home.nix
Normal file
23
systems/ll-nixos-live/home.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.file = {
|
||||||
|
".local/share/OpenSCAD/libraries/BOSL2" = {
|
||||||
|
source = builtins.fetchGit {
|
||||||
|
url = "https://github.com/BelfrySCAD/BOSL2";
|
||||||
|
rev = "7821a5143c7ab488ff3ff73d0cd0c4b508fb5796";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Dotspace
|
||||||
|
gthumb
|
||||||
|
qtpass
|
||||||
|
ledger
|
||||||
|
sound-juicer
|
||||||
|
#pkgs-unstable.yt-dlp
|
||||||
|
#pkgs-unstable.openscad-unstable
|
||||||
|
|
||||||
|
# ll-latitude-e5591
|
||||||
|
wine
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue