framework-2024-04-12-10-25-52

This commit is contained in:
Alexander Szczepanski
2024-04-12 10:25:52 +02:00
parent adaa83a3f2
commit 8df4de7f06
37 changed files with 83 additions and 33 deletions

0
configs/borg-exclude.nix Normal file → Executable file
View File

0
configs/browser.nix Normal file → Executable file
View File

0
configs/common-server.nix Normal file → Executable file
View File

0
configs/common.nix Normal file → Executable file
View File

0
configs/docker.nix Normal file → Executable file
View File

0
configs/games.nix Normal file → Executable file
View File

0
configs/gnome.nix Normal file → Executable file
View File

4
configs/gui.nix Normal file → Executable file
View File

@ -38,10 +38,10 @@ in
};
fonts = {
enableDefaultFonts = true;
enableDefaultPackages = true;
fontDir.enable = true;
fonts = with pkgs; [
packages = with pkgs; [
# (nerdfonts.override { fonts = [ "Liberation" ]; })
nerdfonts
corefonts

0
configs/libvirt.nix Normal file → Executable file
View File

0
configs/p10k-config/p10k.zsh Normal file → Executable file
View File

0
configs/pantheon.nix Normal file → Executable file
View File

0
configs/plasma.nix Normal file → Executable file
View File

0
configs/printing.nix Normal file → Executable file
View File

1
configs/user-gui.nix Normal file → Executable file
View File

@ -24,7 +24,6 @@ in
spotify
baobab
keepassxc
ponymix
grsync
virt-manager
];

18
configs/user.nix Normal file → Executable file
View File

@ -42,15 +42,15 @@ in
environment.pathsToLink = [ "/share/zsh" ];
home-manager.users.alex = { pkgs, ... }: {
# imports = [
# "${
# fetchTarball
# "https://github.com/msteen/nixos-vscode-server/tarball/master"
# }/modules/vscode-server/home.nix"
# ];
imports = [
"${
fetchTarball
"https://github.com/msteen/nixos-vscode-server/tarball/master"
}/modules/vscode-server/home.nix"
];
home = {
stateVersion = "23.05";
stateVersion = "23.11";
packages = with unstable.pkgs; [
atop
btop
@ -64,7 +64,7 @@ in
kubectl
ncdu
neofetch
nixfmt
nixfmt-classic
pstree
qrencode
ranger
@ -179,6 +179,6 @@ in
tmux = { enable = true; };
};
# services.vscode-server.enable = true;
services.vscode-server.enable = true;
};
}

12
configs/virtualbox.nix Executable file
View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
virtualisation = {
virtualbox.host = {
enable = true;
enableExtensionPack = true;
};
};
}

0
configs/wireguard.nix Normal file → Executable file
View File