nixfmt everything
This commit is contained in:
parent
dbf843d70f
commit
d92420451d
30 changed files with 383 additions and 330 deletions
|
|
@ -1,9 +1,5 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./home.nix
|
||||
./programs.nix
|
||||
./services.nix
|
||||
];
|
||||
imports = [ ./home.nix ./programs.nix ./services.nix ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,13 +10,20 @@
|
|||
package = pkgs.breeze-icons;
|
||||
};
|
||||
file = {
|
||||
".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/.config/wezterm/wezterm.lua";
|
||||
".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/.config/MangoHud/MangoHud.conf";
|
||||
".config/solvespace/settings.json".source = "${inputs.dotfiles}/.config/solvespace/settings.json";
|
||||
".local/share/color-schemes/CatppuccinLatte.colors".source = "${inputs.dotfiles}/.local/share/color-schemes/CatppuccinLatte.colors";
|
||||
".local/share/color-schemes/CatppuccinMocha.colors".source = "${inputs.dotfiles}/.local/share/color-schemes/CatppuccinMocha.colors";
|
||||
".config/wezterm/wezterm.lua".source =
|
||||
"${inputs.dotfiles}/.config/wezterm/wezterm.lua";
|
||||
".config/MangoHud/MangoHud.conf".source =
|
||||
"${inputs.dotfiles}/.config/MangoHud/MangoHud.conf";
|
||||
".config/solvespace/settings.json".source =
|
||||
"${inputs.dotfiles}/.config/solvespace/settings.json";
|
||||
".local/share/color-schemes/CatppuccinLatte.colors".source =
|
||||
"${inputs.dotfiles}/.local/share/color-schemes/CatppuccinLatte.colors";
|
||||
".local/share/color-schemes/CatppuccinMocha.colors".source =
|
||||
"${inputs.dotfiles}/.local/share/color-schemes/CatppuccinMocha.colors";
|
||||
# Autostart programs
|
||||
".config/autostart/koi.desktop".source = config.lib.file.mkOutOfStoreSymlink "/var/run/current-system/sw/share/applications/koi.desktop";
|
||||
".config/autostart/koi.desktop".source =
|
||||
config.lib.file.mkOutOfStoreSymlink
|
||||
"/var/run/current-system/sw/share/applications/koi.desktop";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,9 +5,18 @@
|
|||
|
||||
gtk = {
|
||||
enable = true;
|
||||
font = { name = "Inter"; size = 10; };
|
||||
theme = { package = pkgs.breeze-gtk; name = "Breeze"; };
|
||||
iconTheme = { package = pkgs.breeze-icons; name = "Breeze"; };
|
||||
font = {
|
||||
name = "Inter";
|
||||
size = 10;
|
||||
};
|
||||
theme = {
|
||||
package = pkgs.breeze-gtk;
|
||||
name = "Breeze";
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.breeze-icons;
|
||||
name = "Breeze";
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
@ -30,10 +39,14 @@
|
|||
interactiveShellInit = "nix-your-shell fish | source";
|
||||
loginShellInit = "nix-your-shell fish | source";
|
||||
functions = {
|
||||
rebuild = "rm ~/.gtkrc-2.0; sudo nixos-rebuild switch --flake '/home/user/Projects/personal/nix-config#'";
|
||||
rebuild-boot = "rm ~/.gtkrc-2.0; sudo nixos-rebuild boot --flake '/home/user/Projects/personal/nix-config#'";
|
||||
upgrade = "rm ~/.gtkrc-2.0; nix flake lock --update-input nixpkgs --commit-lock-file /home/user/Projects/personal/nix-config; sudo nixos-rebuild switch --upgrade --flake '/home/user/Projects/personal/nix-config#'";
|
||||
upgrade-boot = "rm ~/.gtkrc-2.0; nix flake lock --update-input nixpkgs --commit-lock-file /home/user/Projects/personal/nix-config; sudo nixos-rebuild boot --upgrade --flake '/home/user/Projects/personal/nix-config#'";
|
||||
rebuild =
|
||||
"rm ~/.gtkrc-2.0; sudo nixos-rebuild switch --flake '/home/user/Projects/personal/nix-config#'";
|
||||
rebuild-boot =
|
||||
"rm ~/.gtkrc-2.0; sudo nixos-rebuild boot --flake '/home/user/Projects/personal/nix-config#'";
|
||||
upgrade =
|
||||
"rm ~/.gtkrc-2.0; nix flake lock --update-input nixpkgs --commit-lock-file /home/user/Projects/personal/nix-config; sudo nixos-rebuild switch --upgrade --flake '/home/user/Projects/personal/nix-config#'";
|
||||
upgrade-boot =
|
||||
"rm ~/.gtkrc-2.0; nix flake lock --update-input nixpkgs --commit-lock-file /home/user/Projects/personal/nix-config; sudo nixos-rebuild boot --upgrade --flake '/home/user/Projects/personal/nix-config#'";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services = {
|
||||
kdeconnect.enable = true;
|
||||
};
|
||||
services = { kdeconnect.enable = true; };
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue