diff --git a/system/global/home.nix b/system/global/home.nix index 964030b..fe251b6 100644 --- a/system/global/home.nix +++ b/system/global/home.nix @@ -90,7 +90,6 @@ }; }; }; - programs.waybar.systemd.enable = true; services.udiskie = { enable = true; diff --git a/system/global/system.nix b/system/global/system.nix index c971972..41cb3f7 100644 --- a/system/global/system.nix +++ b/system/global/system.nix @@ -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; }; @@ -75,6 +76,10 @@ VISUAL = "nvim"; TERMINAL = "foot"; }; + + environment.shellAliases = { + code = "codium --ozone-platform=wayland"; + }; environment.systemPackages = with pkgs; [ foot @@ -89,6 +94,11 @@ pcmanfm pavucontrol trash-cli + wget + unzip + gnomeExtensions.appindicator + libappindicator + networkmanager-openvpn (neovim.override { vimAlias = true; configure = { diff --git a/system/work/config/hypr.conf b/system/work/config/hypr.conf index 2d6e1e3..47a1e3b 100644 --- a/system/work/config/hypr.conf +++ b/system/work/config/hypr.conf @@ -1,6 +1,6 @@ exec-once= ~/.local/scripts/autostart -monitor=,preferred,auto,1 +monitor=,preferred,auto,1.2 input { kb_file= diff --git a/system/work/home.nix b/system/work/home.nix index 8e68bd5..cb56e4b 100644 --- a/system/work/home.nix +++ b/system/work/home.nix @@ -6,6 +6,9 @@ home.packages = with pkgs; [ sbctl + onedrive + kubectl + docker-compose ]; programs.git = { diff --git a/system/work/system.nix b/system/work/system.nix index fd379d5..786a49f 100644 --- a/system/work/system.nix +++ b/system/work/system.nix @@ -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"; + }; }