Compare commits

...

2 Commits

2 changed files with 175 additions and 225 deletions

View File

@ -27,8 +27,8 @@ with import <nixpkgs> {};
hardware = { hardware = {
# support for GPUs # support for GPUs
amdgpu = true; amdgpu = false;
intelgpu = false; intelgpu = true;
nvidiagpu = false; nvidiagpu = false;
bluetooth = true; bluetooth = true;

View File

@ -1,14 +1,5 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
{ {
# ======================================================
# _ _
# | | | |___ ___ _ __
# | | | / __|/ _ \ '__|
# | |_| \__ \ __/ |
# \___/|___/\___|_|
#
# Configuration for user servostar
programs.zsh.enable = true; programs.zsh.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
@ -65,8 +56,6 @@
catimg catimg
hollywood hollywood
efibootmgr efibootmgr
# less like program for listing a file with colors
# used as a replacement pager for colored man pages
lazygit lazygit
lazydocker lazydocker
pandoc pandoc
@ -121,14 +110,6 @@
]; ];
}; };
# ------------------------------------------------------
# _ _
# | | | | ___ _ __ ___ ___ _ __ ___ __ _ _ __ __ _ __ _ ___ _ __
# | |_| |/ _ \| '_ ` _ \ / _ \ '_ ` _ \ / _` | '_ \ / _` |/ _` |/ _ \ '__|
# | _ | (_) | | | | | | __/ | | | | | (_| | | | | (_| | (_| | __/ |
# |_| |_|\___/|_| |_| |_|\___|_| |_| |_|\__,_|_| |_|\__,_|\__, |\___|_|
# |___/
home-manager.users.servostar = { home-manager.users.servostar = {
home = { home = {
stateVersion = "23.11"; stateVersion = "23.11";
@ -164,37 +145,6 @@
xdg.configFile."kitty/kitty.conf".source = config/kitty/kitty.conf; xdg.configFile."kitty/kitty.conf".source = config/kitty/kitty.conf;
xdg.configFile."kitty/tokyonight.conf".source = config/kitty/tokyonight.conf; xdg.configFile."kitty/tokyonight.conf".source = config/kitty/tokyonight.conf;
# ------------------------------------------------------
# Fish shell
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
plugins = [
{
name = "fzf-fish";
src = pkgs.fishPlugins.fzf-fish.src;
}
{
name = "forgit";
src = pkgs.fishPlugins.forgit.src;
}
{
name = "grc";
src = pkgs.fishPlugins.grc.src;
}
{
name = "done";
src = pkgs.fishPlugins.done.src;
}
{
name = "autopair";
src = pkgs.fishPlugins.autopair.src;
}
];
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;
shellAliases = { }; shellAliases = { };