WIP: Steam deck config
This commit is contained in:
parent
06d2d535e0
commit
074bccdb21
2 changed files with 53 additions and 0 deletions
|
|
@ -42,5 +42,11 @@
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [./hosts/dnsc-air];
|
modules = [./hosts/dnsc-air];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homeConfigurations."dnsc-deck" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
specialArgs = {inherit inputs outputs;};
|
||||||
|
modules = [ ./home/deck.nix ];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
47
home/deck.nix
Normal file
47
home/deck.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
nix = {
|
||||||
|
package = pkgs.nix;
|
||||||
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
nixpkgs = {
|
||||||
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
allowUnfreePredicate = (_: true);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.username = "dennis";
|
||||||
|
home.homeDirectory = "/home/dennis";
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
git
|
||||||
|
nvim
|
||||||
|
neofetch
|
||||||
|
zip
|
||||||
|
unzip
|
||||||
|
ripgrep
|
||||||
|
fzf
|
||||||
|
just
|
||||||
|
lazygit
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.enable = true;
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./modules/git
|
||||||
|
./modules/fish
|
||||||
|
./modules/wezterm
|
||||||
|
./modules/nvim
|
||||||
|
./modules/lazygit
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue