mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
docs: Add documentation to recent headers
This commit is contained in:
parent
3155f78cda
commit
136c945cfa
6 changed files with 580 additions and 611 deletions
File diff suppressed because it is too large
Load diff
33
flake.nix
33
flake.nix
|
|
@ -112,21 +112,7 @@
|
|||
}
|
||||
);
|
||||
|
||||
# pkgs for home-manager builds
|
||||
# homepkgs = import nixpkgs { system = "x86_64-linux";
|
||||
# overlays = [ inputs.emacs-overlay.overlay
|
||||
# inputs.nur.overlay
|
||||
# inputs.nixgl.overlay
|
||||
# (final: _prev: {
|
||||
# stable = import inputs.nixpkgs-stable {
|
||||
# inherit (final) system config;
|
||||
# };
|
||||
# })
|
||||
# ];
|
||||
# config.allowUnfree = true;
|
||||
# };
|
||||
|
||||
# # NixOS modules that can only be used on NixOS systems
|
||||
# NixOS modules that can only be used on NixOS systems
|
||||
nixModules = [
|
||||
inputs.stylix.nixosModules.stylix
|
||||
inputs.lanzaboote.nixosModules.lanzaboote
|
||||
|
|
@ -162,7 +148,6 @@
|
|||
(pkgs:
|
||||
{
|
||||
default = pkgs.mkShell {
|
||||
# Enable experimental features without having to specify the argument
|
||||
NIX_CONFIG = "experimental-features = nix-command flakes";
|
||||
nativeBuildInputs = [ pkgs.nix pkgs.home-manager pkgs.git ];
|
||||
};
|
||||
|
|
@ -177,8 +162,6 @@
|
|||
inputs.nixgl.overlay
|
||||
];
|
||||
|
||||
|
||||
|
||||
# NixOS setups - run home-manager as a NixOS module for better compatibility
|
||||
# another benefit - full rebuild on nixos-rebuild switch
|
||||
# run rebuild using `nswitch`
|
||||
|
|
@ -227,20 +210,6 @@
|
|||
];
|
||||
};
|
||||
|
||||
# winters = nixpkgs.lib.nixosSystem {
|
||||
# specialArgs = { inherit inputs; };
|
||||
# modules = nixModules ++ [
|
||||
# inputs.nixos-hardware.nixosModules.framework-16-inch-7040-amd
|
||||
# ./profiles/winters/nixos.nix
|
||||
# inputs.home-manager.nixosModules.home-manager
|
||||
# {
|
||||
# home-manager.users.swarsel.imports = mixedModules ++ [
|
||||
# ./profiles/winters/home.nix
|
||||
# ];
|
||||
# }
|
||||
# ];
|
||||
# };
|
||||
|
||||
nginx = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
|
|
|
|||
|
|
@ -18,14 +18,6 @@ _:
|
|||
categories = [ "Application" ];
|
||||
};
|
||||
|
||||
# schlidichat = {
|
||||
# name = "SchildiChat Matrix Client";
|
||||
# genericName = "SchildiChat";
|
||||
# exec = "schildichat-desktop -enable-features=UseOzonePlatform -ozone-platform=wayland --disable-gpu-driver-bug-workarounds";
|
||||
# terminal = false;
|
||||
# categories = [ "Application"];
|
||||
# };
|
||||
|
||||
element = {
|
||||
name = "Element Matrix Client";
|
||||
genericName = "Element";
|
||||
|
|
|
|||
|
|
@ -9,10 +9,6 @@
|
|||
gtk = true;
|
||||
};
|
||||
|
||||
extraOptions = [
|
||||
"--unsupported-gpu"
|
||||
];
|
||||
|
||||
extraSessionCommands = ''
|
||||
export XDG_SESSION_DESKTOP=sway
|
||||
export SDL_VIDEODRIVER=wayland
|
||||
|
|
|
|||
|
|
@ -10,22 +10,5 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
];
|
||||
|
||||
# xdg.portal = {
|
||||
# enable = true;
|
||||
# config = {
|
||||
# common = {
|
||||
# default = "wlr";
|
||||
# };
|
||||
# };
|
||||
# wlr.enable = true;
|
||||
# wlr.settings.screencast = {
|
||||
# output_name = "eDP-2";
|
||||
# chooser_type = "simple";
|
||||
# chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
|
||||
# };
|
||||
# };
|
||||
|
||||
|
||||
# services.dbus.enable = true;
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,45 @@ let
|
|||
matrixDomain = "matrix2.swarsel.win";
|
||||
in
|
||||
{
|
||||
<< vminitbare>>
|
||||
|
||||
|
||||
services = {
|
||||
xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings.PermitRootLogin = "yes";
|
||||
listenAddresses = [{
|
||||
port = 22;
|
||||
addr = "0.0.0.0";
|
||||
}];
|
||||
};
|
||||
};
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
proxmoxLXC = {
|
||||
manageNetwork = true; # manage network myself
|
||||
manageHostName = false; # manage hostname myself
|
||||
};
|
||||
|
||||
networking = {
|
||||
useDHCP = true;
|
||||
enableIPv6 = false;
|
||||
};
|
||||
|
||||
users.users.root.openssh.authorizedKeys.keyFiles = [
|
||||
../../../secrets/keys/authorized_keys
|
||||
];
|
||||
|
||||
system.stateVersion = "23.05"; # TEMPLATE - but probably no need to change
|
||||
|
||||
environment.shellAliases = {
|
||||
nswitch = "cd /.dotfiles; git pull; nixos-rebuild --flake .#$(hostname) switch; cd -;";
|
||||
};
|
||||
|
||||
|
||||
imports = [
|
||||
(modulesPath + "/virtualisation/proxmox-lxc.nix")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue