import changes, changed wallpaper names
Before Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 140 KiB |
Before Width: | Height: | Size: 133 KiB |
Before Width: | Height: | Size: 4.8 MiB |
Before Width: | Height: | Size: 4 MiB |
Before Width: | Height: | Size: 4.3 MiB |
Before Width: | Height: | Size: 4 MiB |
|
@ -1,7 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<comment version="3.0">
|
|
||||||
<caption>atom_triangle_wallpaper</caption>
|
|
||||||
<note/>
|
|
||||||
<place/>
|
|
||||||
<categories/>
|
|
||||||
</comment>
|
|
|
@ -1,7 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<comment version="3.0">
|
|
||||||
<caption/>
|
|
||||||
<note>charset=Ascii Screenshot</note>
|
|
||||||
<place/>
|
|
||||||
<categories/>
|
|
||||||
</comment>
|
|
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 1,006 KiB After Width: | Height: | Size: 1,006 KiB |
|
@ -11,7 +11,7 @@ in {
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.agenix.nixosModules.default
|
inputs.agenix.nixosModules.default
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
inputs.nixvim.nixosModules.nixvim
|
#inputs.nixvim.nixosModules.nixvim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
hermit = lib.nixosSystem {
|
hermit = lib.nixosSystem {
|
||||||
|
@ -26,5 +26,4 @@ in {
|
||||||
inputs.nixvim.nixosModules.nixvim
|
inputs.nixvim.nixosModules.nixvim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,7 +64,6 @@ in {
|
||||||
nicotine-plus
|
nicotine-plus
|
||||||
nil
|
nil
|
||||||
nitch
|
nitch
|
||||||
nixfmt
|
|
||||||
nixpkgs-wayland.swww
|
nixpkgs-wayland.swww
|
||||||
nmap
|
nmap
|
||||||
notesnook
|
notesnook
|
||||||
|
|
|
@ -6,10 +6,8 @@
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.modules.programs.fish;
|
cfg = config.modules.programs.fish;
|
||||||
username = config.modules.other.system.username;
|
inherit (config.modules.other.system) username;
|
||||||
# not needed because I'm using nh os switch
|
inherit (config.modules.other.system) gitPath;
|
||||||
# hostname = config.modules.other.system.hostname;
|
|
||||||
gitPath = config.modules.other.system.gitPath;
|
|
||||||
in {
|
in {
|
||||||
options.modules.programs.fish = {
|
options.modules.programs.fish = {
|
||||||
enable = mkEnableOption "fish";
|
enable = mkEnableOption "fish";
|
||||||
|
@ -32,53 +30,55 @@ in {
|
||||||
|
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
home.packages = with pkgs; [nix-output-monitor];
|
home.packages = with pkgs; [nix-output-monitor];
|
||||||
programs.zoxide.enable = true;
|
programs = {
|
||||||
programs.zoxide.enableFishIntegration = true;
|
zoxide.enable = true;
|
||||||
programs.fish = {
|
zoxide.enableFishIntegration = true;
|
||||||
enable = true;
|
fish = {
|
||||||
interactiveShellInit = "set fish_greeting";
|
enable = true;
|
||||||
plugins = [
|
interactiveShellInit = "set fish_greeting";
|
||||||
{
|
plugins = [
|
||||||
name = "grc";
|
{
|
||||||
src = pkgs.fishPlugins.grc.src;
|
name = "grc";
|
||||||
}
|
inherit (pkgs.fishPlugins.grc) src;
|
||||||
{
|
}
|
||||||
name = "sponge";
|
{
|
||||||
src = pkgs.fishPlugins.sponge.src;
|
name = "sponge";
|
||||||
}
|
inherit (pkgs.fishPlugins.sponge) src;
|
||||||
{
|
}
|
||||||
name = "done";
|
{
|
||||||
src = pkgs.fishPlugins.done.src;
|
name = "done";
|
||||||
}
|
inherit (pkgs.fishPlugins.done) src;
|
||||||
{
|
}
|
||||||
name = "colored_man_pages";
|
{
|
||||||
src = pkgs.fishPlugins.colored-man-pages.src;
|
name = "colored_man_pages";
|
||||||
}
|
inherit (pkgs.fishPlugins.colored-man-pages) src;
|
||||||
{
|
}
|
||||||
name = "tide";
|
{
|
||||||
src = pkgs.fishPlugins.tide.src;
|
name = "tide";
|
||||||
}
|
inherit (pkgs.fishPlugins.tide) src;
|
||||||
];
|
}
|
||||||
shellAbbrs =
|
];
|
||||||
{
|
shellAbbrs =
|
||||||
c = "clear";
|
{
|
||||||
cc = "cd ~ && clear";
|
c = "clear";
|
||||||
mv = "mv -iv";
|
cc = "cd ~ && clear";
|
||||||
rm = "trash -v";
|
mv = "mv -iv";
|
||||||
ls = "eza --icons";
|
rm = "trash -v";
|
||||||
l = "eza -a --icons";
|
ls = "eza --icons";
|
||||||
la = "eza -lha --icons --git";
|
l = "eza -a --icons";
|
||||||
kys = "shutdown now";
|
la = "eza -lha --icons --git";
|
||||||
lg = "lazygit";
|
kys = "shutdown now";
|
||||||
cd = "z";
|
lg = "lazygit";
|
||||||
v = "nvim";
|
cd = "z";
|
||||||
h = "hx";
|
v = "nvim";
|
||||||
k = "kak";
|
h = "hx";
|
||||||
e = "emacs";
|
k = "kak";
|
||||||
update = ''nh os switch "${gitPath}"'';
|
e = "emacs";
|
||||||
flake = "cd '${gitPath}'";
|
update = ''nh os switch "${gitPath}"'';
|
||||||
}
|
flake = "cd '${gitPath}'";
|
||||||
// cfg.extraAliases;
|
}
|
||||||
|
// cfg.extraAliases;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
cfg = config.modules.editors.nixvim;
|
cfg = config.modules.editors.nixvim;
|
||||||
in {
|
in {
|
||||||
options.modules.editors.nixvim.enable = lib.mkEnableOption "nixvim";
|
options.modules.editors.nixvim.enable = lib.mkEnableOption "nixvim";
|
||||||
imports = [
|
imports = [
|
||||||
|
inputs.nixvim.nixosModules.nixvim
|
||||||
./keys.nix
|
./keys.nix
|
||||||
./settings.nix
|
./settings.nix
|
||||||
./plug/completion/cmp.nix
|
./plug/completion/cmp.nix
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.modules.programs.ssh;
|
cfg = config.modules.programs.ssh;
|
||||||
username = config.modules.other.system.username;
|
inherit (config.modules.other.system) username;
|
||||||
in {
|
in {
|
||||||
options.modules.programs.ssh.enable = mkEnableOption "ssh";
|
options.modules.programs.ssh.enable = mkEnableOption "ssh";
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
username = config.modules.other.system.username;
|
inherit (config.modules.other.system) username;
|
||||||
in {
|
in {
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
inputs,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
services.xserver.videoDrivers = ["nvidia"];
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
username = config.modules.other.system.username;
|
inherit (config.modules.other.system) username;
|
||||||
in {
|
in {
|
||||||
networking = {
|
networking = {
|
||||||
networkmanager = {
|
networkmanager = {
|
||||||
|
|