prep arielle
This commit is contained in:
parent
96e5924fb0
commit
82115af252
13 changed files with 35 additions and 54 deletions
15
home/profiles/desktop-full.nix
Normal file
15
home/profiles/desktop-full.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./desktop-slim.nix
|
||||
|
||||
../messaging.nix
|
||||
../r.nix
|
||||
../tex.nix
|
||||
../mail
|
||||
../office-gui.nix
|
||||
../office-cli.nix
|
||||
../aichat.nix
|
||||
];
|
||||
}
|
||||
30
home/profiles/desktop-slim.nix
Normal file
30
home/profiles/desktop-slim.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./minimal.nix
|
||||
|
||||
../devel.nix
|
||||
../firefox.nix
|
||||
../fonts.nix
|
||||
../foot.nix
|
||||
../media.nix
|
||||
../user-dirs.nix
|
||||
../gpg.nix
|
||||
../password-store.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
anki-bin
|
||||
appimage-run
|
||||
drawing
|
||||
keepassxc
|
||||
libnotify
|
||||
usbutils
|
||||
wl-clipboard
|
||||
yubioath-flutter
|
||||
zathura
|
||||
];
|
||||
|
||||
services.syncthing.enable = true;
|
||||
}
|
||||
51
home/profiles/minimal.nix
Normal file
51
home/profiles/minimal.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.homeDirectory = "/home/${config.home.username}";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
dust
|
||||
fastfetch
|
||||
fzf
|
||||
jq
|
||||
nh
|
||||
nix-search
|
||||
progress
|
||||
rename
|
||||
silver-searcher
|
||||
tldr
|
||||
tmux
|
||||
yq
|
||||
];
|
||||
|
||||
imports = [
|
||||
../fish.nix
|
||||
../vifm.nix
|
||||
../nvim
|
||||
../tmux.nix
|
||||
../ssh.nix
|
||||
];
|
||||
|
||||
programs.nix-index = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
pull.rebase = true;
|
||||
extraConfig.init.defaultBranch = "main";
|
||||
};
|
||||
lfs.enable = true;
|
||||
};
|
||||
|
||||
programs.bottom = {
|
||||
enable = true;
|
||||
settings.styles.theme = "default-light";
|
||||
};
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
}
|
||||
8
home/profiles/on-server.nix
Normal file
8
home/profiles/on-server.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./minimal.nix
|
||||
./devel.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue