scaling and work tools

This commit is contained in:
tristan 2023-04-15 19:13:36 +01:00
parent 0cc6c5a6b9
commit a72fdaa3af
5 changed files with 24 additions and 4 deletions

View file

@ -90,7 +90,6 @@
};
};
};
programs.waybar.systemd.enable = true;
services.udiskie = {
enable = true;

View file

@ -14,6 +14,7 @@
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
time.timeZone = "Europe/London";
@ -64,7 +65,7 @@
users.users.tristan = {
isNormalUser = true;
extraGroups = [ "wheel" "video" ];
extraGroups = [ "wheel" "video" "networkmanager" ];
initialPassword = "pass";
shell = pkgs.fish;
};
@ -76,6 +77,10 @@
TERMINAL = "foot";
};
environment.shellAliases = {
code = "codium --ozone-platform=wayland";
};
environment.systemPackages = with pkgs; [
foot
brave
@ -89,6 +94,11 @@
pcmanfm
pavucontrol
trash-cli
wget
unzip
gnomeExtensions.appindicator
libappindicator
networkmanager-openvpn
(neovim.override {
vimAlias = true;
configure = {

View file

@ -1,6 +1,6 @@
exec-once= ~/.local/scripts/autostart
monitor=,preferred,auto,1
monitor=,preferred,auto,1.2
input {
kb_file=

View file

@ -6,6 +6,9 @@
home.packages = with pkgs; [
sbctl
onedrive
kubectl
docker-compose
];
programs.git = {

View file

@ -11,11 +11,19 @@
xkbOptions = "caps:escape";
};
environment.systemPackages = with pkgs; [
openvpn
openvpn3
];
networking.firewall.allowedTCPPorts = [ ];
system.stateVersion = "22.11"; # do not change
boot.bootspec.enable = true;
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
};
}