Merge branch 'master' of git.bitlab21.com:sam/nixos
This commit is contained in:
commit
607a578c04
3 changed files with 21 additions and 1 deletions
11
flake.nix
11
flake.nix
|
@ -141,6 +141,17 @@
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/cloudnix
|
./hosts/cloudnix
|
||||||
|
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
iso = nixpkgs.lib.nixosSystem {
|
||||||
|
inherit specialArgs;
|
||||||
|
modules = [
|
||||||
|
./hosts/iso
|
||||||
|
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = specialArgs;
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
XF86AudioMicMute
|
XF86AudioMicMute
|
||||||
pamixer --default-source --toggle-mute && dunstify-volume-notification && pkill -RTMIN+10 dwmblocks && exit 1
|
pamixer --default-source --toggle-mute && dunstify-volume-notification && pkill -RTMIN+10 dwmblocks && exit 1
|
||||||
|
|
||||||
XF86Messenger
|
control + F9
|
||||||
dunstify-battery-notification
|
dunstify-battery-notification
|
||||||
|
|
||||||
control + F8
|
control + F8
|
||||||
|
|
9
hosts/iso/default.nix
Normal file
9
hosts/iso/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{modulesPath, pkgs, lib, ...}: let
|
||||||
|
in {
|
||||||
|
imports = [(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")];
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.openssl
|
||||||
|
pkgs.nvim
|
||||||
|
];
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue