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
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
+2 -2
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
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
-1
View File
@@ -24,7 +24,6 @@ in
spotify
baobab
keepassxc
ponymix
grsync
virt-manager
];
Regular → Executable
+9 -9
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
View File
@@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
virtualisation = {
virtualbox.host = {
enable = true;
enableExtensionPack = true;
};
};
}
Regular → Executable
View File