Changes
This commit is contained in:
parent
3d54b62018
commit
3b244da86b
6 changed files with 68 additions and 36 deletions
|
@ -124,7 +124,6 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim
|
vim
|
||||||
neovim
|
|
||||||
git
|
git
|
||||||
openssh
|
openssh
|
||||||
rofi
|
rofi
|
||||||
|
@ -139,9 +138,13 @@
|
||||||
k3sup
|
k3sup
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
nixd
|
nixd
|
||||||
vault
|
unstable.neovim
|
||||||
|
omnisharp-roslyn
|
||||||
];
|
];
|
||||||
|
|
||||||
|
systemd.services.NetworkManager-wait-online.enable = false;
|
||||||
|
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
picom.enable = true;
|
picom.enable = true;
|
||||||
openssh = {
|
openssh = {
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
|
|
||||||
#LSP
|
#LSP
|
||||||
# roslyn
|
# roslyn
|
||||||
roslyn-ls
|
# roslyn-ls
|
||||||
dockerfile-language-server-nodejs
|
dockerfile-language-server-nodejs
|
||||||
docker-compose-language-service
|
docker-compose-language-service
|
||||||
bash-language-server
|
bash-language-server
|
||||||
|
@ -156,7 +156,6 @@
|
||||||
vial
|
vial
|
||||||
thunderbird
|
thunderbird
|
||||||
alacritty
|
alacritty
|
||||||
neovim
|
|
||||||
fastfetch
|
fastfetch
|
||||||
lazygit
|
lazygit
|
||||||
byzanz
|
byzanz
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -83,7 +83,15 @@
|
||||||
inherit inputs outputs;
|
inherit inputs outputs;
|
||||||
myhostname = "work-desktop";
|
myhostname = "work-desktop";
|
||||||
};
|
};
|
||||||
modules = [ ./maskiner/work-desktop/configuration.nix ];
|
modules = [
|
||||||
|
(
|
||||||
|
{ nixpkgs, ... }:
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [ overlay-unstable ];
|
||||||
|
}
|
||||||
|
)
|
||||||
|
./maskiner/work-desktop/configuration.nix
|
||||||
|
];
|
||||||
};
|
};
|
||||||
lillen = nixpkgs.lib.nixosSystem {
|
lillen = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
|
|
|
@ -24,8 +24,13 @@
|
||||||
k3s
|
k3s
|
||||||
cifs-utils
|
cifs-utils
|
||||||
nfs-utils
|
nfs-utils
|
||||||
|
docker-slim
|
||||||
];
|
];
|
||||||
|
|
||||||
|
networking.firewall = {
|
||||||
|
allowedTCPPorts = [ 5173 ];
|
||||||
|
};
|
||||||
|
|
||||||
services.k3s.enable = false;
|
services.k3s.enable = false;
|
||||||
|
|
||||||
services.openiscsi = {
|
services.openiscsi = {
|
||||||
|
|
|
@ -5,21 +5,38 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
gui = {
|
gui = {
|
||||||
theme = {
|
# Mocha
|
||||||
activeBorderColor = [ "#f5a97f" "bold" ];
|
# theme = {
|
||||||
inactiveBorderColor = [ "#a5adcb" ];
|
# activeBorderColor = [ "#f5a97f" "bold" ];
|
||||||
optionsTextColor = [ "#8aadf4" ];
|
# inactiveBorderColor = [ "#a5adcb" ];
|
||||||
selectedLineBgColor = [ "#363a4f" ];
|
# optionsTextColor = [ "#8aadf4" ];
|
||||||
cherryPickedCommitBgColor = [ "#494d64" ];
|
# selectedLineBgColor = [ "#363a4f" ];
|
||||||
cherryPickedCommitFgColor = [ "#f5a97f" ];
|
# cherryPickedCommitBgColor = [ "#494d64" ];
|
||||||
unstagedChangesColor = [ "#ed8796" ];
|
# cherryPickedCommitFgColor = [ "#f5a97f" ];
|
||||||
defaultFgColor = [ "#cad3f5" ];
|
# unstagedChangesColor = [ "#ed8796" ];
|
||||||
searchingActiveBorderColor = [ "#eed49f" ];
|
# defaultFgColor = [ "#cad3f5" ];
|
||||||
};
|
# searchingActiveBorderColor = [ "#eed49f" ];
|
||||||
|
# };
|
||||||
|
#
|
||||||
|
# authorColors = {
|
||||||
|
# "*" = "#b7bdf8";
|
||||||
|
# };
|
||||||
|
# Latte
|
||||||
|
theme = {
|
||||||
|
activeBorderColor = [ "#fe640b" "bold" ];
|
||||||
|
inactiveBorderColor = [ "#6c6f85" ];
|
||||||
|
optionsTextColor = [ "#1e66f5" ];
|
||||||
|
selectedLineBgColor = [ "#ccd0da" ];
|
||||||
|
cherryPickedCommitBgColor = [ "#bcc0cc" ];
|
||||||
|
cherryPickedCommitFgColor = [ "#fe640b" ];
|
||||||
|
unstagedChangesColor = [ "#d20f39" ];
|
||||||
|
defaultFgColor = [ "#4c4f69" ];
|
||||||
|
searchingActiveBorderColor = [ "#df8e1d" ];
|
||||||
|
};
|
||||||
|
|
||||||
authorColors = {
|
authorColors = {
|
||||||
"*" = "#b7bdf8";
|
"*" = "#7287fd";
|
||||||
};
|
};
|
||||||
showRandomTip = false;
|
showRandomTip = false;
|
||||||
showBottomLine = false;
|
showBottomLine = false;
|
||||||
sidePanelWidth = 0.5;
|
sidePanelWidth = 0.5;
|
||||||
|
|
|
@ -6,29 +6,29 @@
|
||||||
settings = {
|
settings = {
|
||||||
"$schema"= "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json";
|
"$schema"= "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json";
|
||||||
# Macchiato
|
# Macchiato
|
||||||
"palette" = {
|
|
||||||
"os"= "#ACB0BE";
|
|
||||||
"closer"= "p:os";
|
|
||||||
"pink"= "#F5BDE6";
|
|
||||||
"lavender"= "#B7BDF8";
|
|
||||||
"blue"= "#8aadf4";
|
|
||||||
"peach" = "#f5a97f";
|
|
||||||
"red" = "#ed8796";
|
|
||||||
"green" = "#a6da95";
|
|
||||||
"mauve" = "#c6a0f6";
|
|
||||||
};
|
|
||||||
# Latte
|
|
||||||
# "palette" = {
|
# "palette" = {
|
||||||
# "os"= "#ACB0BE";
|
# "os"= "#ACB0BE";
|
||||||
# "closer"= "p:os";
|
# "closer"= "p:os";
|
||||||
# "pink"= "#ea76cb";
|
# "pink"= "#F5BDE6";
|
||||||
# "lavender"= "#B7BDF8";
|
# "lavender"= "#B7BDF8";
|
||||||
# "blue"= "#8aadf4";
|
# "blue"= "#8aadf4";
|
||||||
# "peach" = "#fe640b";
|
# "peach" = "#f5a97f";
|
||||||
# "red" = "#d20f39";
|
# "red" = "#ed8796";
|
||||||
# "green" = "#40a02b";
|
# "green" = "#a6da95";
|
||||||
# "mauve" = "#8839ef";
|
# "mauve" = "#c6a0f6";
|
||||||
# };
|
# };
|
||||||
|
# Latte
|
||||||
|
"palette" = {
|
||||||
|
"os"= "#ACB0BE";
|
||||||
|
"closer"= "p:os";
|
||||||
|
"pink"= "#ea76cb";
|
||||||
|
"lavender"= "#B7BDF8";
|
||||||
|
"blue"= "#8aadf4";
|
||||||
|
"peach" = "#fe640b";
|
||||||
|
"red" = "#d20f39";
|
||||||
|
"green" = "#40a02b";
|
||||||
|
"mauve" = "#8839ef";
|
||||||
|
};
|
||||||
"blocks"= [
|
"blocks"= [
|
||||||
{
|
{
|
||||||
"alignment"= "left";
|
"alignment"= "left";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue