Laptops building again
This commit is contained in:
parent
ed9ae0bd07
commit
52c3f11b41
3 changed files with 17 additions and 9 deletions
14
flake.nix
14
flake.nix
|
@ -180,7 +180,7 @@
|
|||
modules = with nixosModules; [
|
||||
common
|
||||
|
||||
diskoConfigurations.standard
|
||||
outputs.diskoConfigurations.standard
|
||||
hardware.nixosModules.common-cpu-amd
|
||||
hardware.nixosModules.common-pc-ssd
|
||||
|
||||
|
@ -217,7 +217,6 @@
|
|||
hardware.nixosModules.framework-13-7040-amd
|
||||
|
||||
graphical-workstation
|
||||
development-tools
|
||||
laptop
|
||||
gaming
|
||||
|
||||
|
@ -248,11 +247,20 @@
|
|||
hardware.nixosModules.lenovo-thinkpad-x1-yoga
|
||||
|
||||
graphical-workstation
|
||||
development-tools
|
||||
laptop
|
||||
gaming
|
||||
|
||||
./nixos/thablet.nix
|
||||
|
||||
{
|
||||
home-manager.users.daniel = {
|
||||
imports = with homeManagerModules; [
|
||||
iex
|
||||
cargo
|
||||
linux-desktop-environment-config
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
gnupg
|
||||
(pkgs.buildEnv {
|
||||
name = "my-common-scripts";
|
||||
paths = [./modules/home-manager/scripts/common];
|
||||
paths = [./scripts/common];
|
||||
})
|
||||
];
|
||||
};
|
||||
|
@ -241,8 +241,8 @@
|
|||
programs.fish = {
|
||||
enable = true;
|
||||
# I load long scripts from files for a better editing experience
|
||||
shellInit = builtins.readFile ./modules/home-manager/fish/shellInit.fish;
|
||||
interactiveShellInit = builtins.readFile ./modules/home-manager/fish/interactiveShellInit.fish;
|
||||
shellInit = builtins.readFile ./fish/shellInit.fish;
|
||||
interactiveShellInit = builtins.readFile ./fish/interactiveShellInit.fish;
|
||||
loginShellInit = "";
|
||||
functions = {
|
||||
# TODO: I think these should be loaded from fish files too for better editor experience?
|
||||
|
@ -1104,7 +1104,7 @@
|
|||
home.packages = [
|
||||
(pkgs.buildEnv {
|
||||
name = "my-linux-scripts";
|
||||
paths = [./modules/home-manager/scripts/linux];
|
||||
paths = [./scripts/linux];
|
||||
})
|
||||
];
|
||||
};
|
||||
|
@ -1195,7 +1195,7 @@
|
|||
# docs: https://wezfurlong.org/wezterm/config/appearance.html#defining-your-own-colors
|
||||
programs.wezterm = with colors.withHashPrefix; {
|
||||
enable = true;
|
||||
extraConfig = builtins.readFile ./modules/home-manager/wezterm/config.lua;
|
||||
extraConfig = builtins.readFile ./wezterm/config.lua;
|
||||
colorSchemes = {
|
||||
catppuccin-mocha-sapphire = {
|
||||
ansi = map (x: colors.withHashPrefix.${toString x}) (pkgs.lib.lists.range 0 7);
|
||||
|
|
|
@ -720,7 +720,7 @@
|
|||
|
||||
family-users = {
|
||||
imports = with nixosModules; [
|
||||
daniel
|
||||
# daniel # part of common
|
||||
valerie
|
||||
flanfam
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue