Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
65
puter/001-vm-arch-shorekeeper/shorekeeper.nix
Normal file
65
puter/001-vm-arch-shorekeeper/shorekeeper.nix
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
/*--------------------------------------------------
|
||||
|
||||
▗▄▄▖▗▖ ▗▖ ▗▄▖ ▗▄▄▖ ▗▄▄▄▖▗▖ ▗▖▗▄▄▄▖▗▄▄▄▖▗▄▄▖ ▗▄▄▄▖▗▄▄▖
|
||||
▐▌ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌▗▞▘▐▌ ▐▌ ▐▌ ▐▌▐▌ ▐▌ ▐▌
|
||||
▝▀▚▖▐▛▀▜▌▐▌ ▐▌▐▛▀▚▖▐▛▀▀▘▐▛▚▖ ▐▛▀▀▘▐▛▀▀▘▐▛▀▘ ▐▛▀▀▘▐▛▀▚▖
|
||||
▗▄▄▞▘▐▌ ▐▌▝▚▄▞▘▐▌ ▐▌▐▙▄▄▖▐▌ ▐▌▐▙▄▄▖▐▙▄▄▖▐▌ ▐▙▄▄▖▐▌ ▐▌
|
||||
|
||||
standalone homeManager on Arch
|
||||
|
||||
---------------------------------------------------*/
|
||||
{ config, inputs, ... }:
|
||||
|
||||
# nix run home-manager -- switch -b "backup" --flake ./#shorekeeper
|
||||
|
||||
let
|
||||
hostname = "shorekeeper";
|
||||
username = "kirbara";
|
||||
platform = "homeManager";
|
||||
architecture = "x86_64-linux";
|
||||
in
|
||||
|
||||
{
|
||||
den.homes.${architecture}.${hostname} = {
|
||||
userName = username;
|
||||
aspect = hostname;
|
||||
};
|
||||
|
||||
den.aspects = {
|
||||
${hostname} = {
|
||||
${platform} = {
|
||||
home.username = username;
|
||||
targets.genericLinux.enable = true;
|
||||
programs.home-manager.enable = true;
|
||||
nixpkgs.overlays = [ inputs.self.overlays.default ];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
imports = with config.den.aspects; [
|
||||
base.homeManager
|
||||
# font.homeManager
|
||||
# shell.homeManager
|
||||
# antimicrox.homeManager
|
||||
# gaming.homeManager
|
||||
# -----
|
||||
code.homeManager
|
||||
code-editor.homeManager
|
||||
# -----
|
||||
# shotcut.homeManager
|
||||
# blender-hip-latest.homeManager
|
||||
# audacity.homeManager
|
||||
obs-studio.homeManager
|
||||
# qbittorrent.homeManager
|
||||
brave.homeManager
|
||||
# -----
|
||||
nix-flatpak.homeManager
|
||||
# zen-browser.flatpak
|
||||
# gimp.flatpak
|
||||
# krita.flatpak
|
||||
# bottles.flatpak
|
||||
# jdownloader.flatpak
|
||||
mpcqt.flatpak
|
||||
jorts.flatpak
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue