Remove sddm from steam, add update fish abbreviation

This commit is contained in:
Evie Litherland-Smith 2023-05-06 14:02:35 +01:00
parent 2acbcf0d60
commit 8fd5491f57
3 changed files with 3 additions and 9 deletions

View file

@ -36,6 +36,8 @@
home.username = "xenia";
home.homeDirectory = "/home/xenia";
home.stateVersion = "22.11";
programs.fish.shellAbbrs.update = "sudo nixos-rebuild switch";
};
# Extra hardware configuration
@ -45,7 +47,7 @@
};
system.autoUpgrade = {
enable = true;
enable = false;
allowReboot = false;
};
}

View file

@ -1,6 +1,5 @@
{ pkgs, ... }:
{
imports = [ ./sddm.nix ];
environment.systemPackages = [
pkgs.mesa
];

7
home/env/fish.nix vendored
View file

@ -4,14 +4,7 @@
programs.fish = {
enable = true;
shellAbbrs = {
nr = "sudo nixos-rebuild";
hm = "home-manager";
lg = "lazygit";
nvh = "nvim --headless --listen ~/.nvim.sock";
nv = "neovide --multigrid --maximized";
rnv = "neovide --multigrid --maximized --server ~/.nvim.sock";
xnv = "WINIT_UNIX_BACKEND=x11 neovide --multigrid --maximized";
rxnv = "WINIT_UNIX_BACKEND=x11 neovide --multigrid --maximized --server ~/.nvim.sock";
};
};
programs.keychain.enableFishIntegration = true;