scaling and work tools
This commit is contained in:
parent
0cc6c5a6b9
commit
a72fdaa3af
5 changed files with 24 additions and 4 deletions
|
|
@ -90,7 +90,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs.waybar.systemd.enable = true;
|
|
||||||
|
|
||||||
services.udiskie = {
|
services.udiskie = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
programs.nm-applet.enable = true;
|
||||||
|
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
|
|
||||||
|
|
@ -64,7 +65,7 @@
|
||||||
|
|
||||||
users.users.tristan = {
|
users.users.tristan = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "video" ];
|
extraGroups = [ "wheel" "video" "networkmanager" ];
|
||||||
initialPassword = "pass";
|
initialPassword = "pass";
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
@ -76,6 +77,10 @@
|
||||||
TERMINAL = "foot";
|
TERMINAL = "foot";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.shellAliases = {
|
||||||
|
code = "codium --ozone-platform=wayland";
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
foot
|
foot
|
||||||
brave
|
brave
|
||||||
|
|
@ -89,6 +94,11 @@
|
||||||
pcmanfm
|
pcmanfm
|
||||||
pavucontrol
|
pavucontrol
|
||||||
trash-cli
|
trash-cli
|
||||||
|
wget
|
||||||
|
unzip
|
||||||
|
gnomeExtensions.appindicator
|
||||||
|
libappindicator
|
||||||
|
networkmanager-openvpn
|
||||||
(neovim.override {
|
(neovim.override {
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
configure = {
|
configure = {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
exec-once= ~/.local/scripts/autostart
|
exec-once= ~/.local/scripts/autostart
|
||||||
monitor=,preferred,auto,1
|
monitor=,preferred,auto,1.2
|
||||||
|
|
||||||
input {
|
input {
|
||||||
kb_file=
|
kb_file=
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,9 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
sbctl
|
sbctl
|
||||||
|
onedrive
|
||||||
|
kubectl
|
||||||
|
docker-compose
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,19 @@
|
||||||
xkbOptions = "caps:escape";
|
xkbOptions = "caps:escape";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
openvpn
|
||||||
|
openvpn3
|
||||||
|
];
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ ];
|
networking.firewall.allowedTCPPorts = [ ];
|
||||||
|
|
||||||
system.stateVersion = "22.11"; # do not change
|
system.stateVersion = "22.11"; # do not change
|
||||||
|
|
||||||
boot.bootspec.enable = true;
|
virtualisation.docker = {
|
||||||
|
enable = true;
|
||||||
|
storageDriver = "btrfs";
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue