Compare commits

...

2 Commits

Author SHA1 Message Date
99016d3adb
home/shell: add some shell aliases 2024-12-22 00:40:34 -05:00
765fcb3a6c
slab: move config to explicit config block 2024-12-21 18:16:36 -05:00
2 changed files with 292 additions and 287 deletions

View File

@ -39,6 +39,8 @@ in
home.shellAliases = {
v = "nvim";
icat = "kitten icat";
srun = "systemd-run";
urun = "systemd-run --user";
};
programs.fzf.enable = lib.mkDefault true;
programs.fzf.enableZshIntegration = lib.mkDefault true;

View File

@ -6,6 +6,17 @@
{ config, lib, pkgs, vars, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../system # nixfiles modules
./nvidia-optimus.nix
./supergfxd.nix
];
config = {
# nix.settings.experimental-features = ["nix-command" "flakes" ];
fileSystems = lib.mkMerge [
@ -30,15 +41,6 @@
}))
];
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../system # nixfiles modules
./nvidia-optimus.nix
./supergfxd.nix
];
# specialisation.plasma.configuration = {
# system.nixos.tags = [ "Plasma" ];
# nixfiles = {
@ -312,5 +314,6 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
};
}