Compare commits
2 Commits
6540ad1b94
...
99016d3adb
Author | SHA1 | Date | |
---|---|---|---|
99016d3adb | |||
765fcb3a6c |
@ -39,6 +39,8 @@ in
|
|||||||
home.shellAliases = {
|
home.shellAliases = {
|
||||||
v = "nvim";
|
v = "nvim";
|
||||||
icat = "kitten icat";
|
icat = "kitten icat";
|
||||||
|
srun = "systemd-run";
|
||||||
|
urun = "systemd-run --user";
|
||||||
};
|
};
|
||||||
programs.fzf.enable = lib.mkDefault true;
|
programs.fzf.enable = lib.mkDefault true;
|
||||||
programs.fzf.enableZshIntegration = lib.mkDefault true;
|
programs.fzf.enableZshIntegration = lib.mkDefault true;
|
||||||
|
@ -6,6 +6,17 @@
|
|||||||
{ config, lib, pkgs, vars, ... }:
|
{ 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" ];
|
# nix.settings.experimental-features = ["nix-command" "flakes" ];
|
||||||
|
|
||||||
fileSystems = lib.mkMerge [
|
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 = {
|
# specialisation.plasma.configuration = {
|
||||||
# system.nixos.tags = [ "Plasma" ];
|
# system.nixos.tags = [ "Plasma" ];
|
||||||
# nixfiles = {
|
# nixfiles = {
|
||||||
@ -312,5 +314,6 @@
|
|||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
|
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user