Merge branch 'master' of ssh://ssh.nx2.site:50022/nx2/dotfiles
This commit is contained in:
@@ -37,5 +37,18 @@
|
|||||||
"special": "#ffd331",
|
"special": "#ffd331",
|
||||||
"weird": "#ff31e5"
|
"weird": "#ff31e5"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"NxDCS": {
|
||||||
|
"base": {
|
||||||
|
"foreground": "#ddcccc",
|
||||||
|
"background": "#080707"
|
||||||
|
},
|
||||||
|
"to_alter": {
|
||||||
|
"accent": "#d23f36",
|
||||||
|
"secondary": "#355273",
|
||||||
|
"tertiary": "#1b789b",
|
||||||
|
"special": "#66dd66",
|
||||||
|
"weird": "#dddd66"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -73,7 +73,10 @@
|
|||||||
modules = [ ./home.nix ];
|
modules = [ ./home.nix ];
|
||||||
extraSpecialArgs = { inherit inputs hyper rice secrets; };
|
extraSpecialArgs = { inherit inputs hyper rice secrets; };
|
||||||
};
|
};
|
||||||
make-shell-configuration = host: let hyper = get-hyper host; in home-manager.lib.homeManagerConfiguration {
|
make-shell-configuration = host: let
|
||||||
|
hyper = get-hyper host;
|
||||||
|
rice = get-rice hyper;
|
||||||
|
in home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = get-pkgs hyper;
|
pkgs = get-pkgs hyper;
|
||||||
modules = [ ./shell-only.nix ];
|
modules = [ ./shell-only.nix ];
|
||||||
extraSpecialArgs = { inherit inputs hyper rice secrets; };
|
extraSpecialArgs = { inherit inputs hyper rice secrets; };
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{ pkgs, ... }@all: with all; {
|
{ pkgs, ... }@all: with all; {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
asciinema
|
||||||
bat
|
bat
|
||||||
cmake
|
cmake
|
||||||
cmatrix
|
cmatrix
|
||||||
|
|||||||
@@ -5,6 +5,8 @@
|
|||||||
requests
|
requests
|
||||||
# debugpy
|
# debugpy
|
||||||
black
|
black
|
||||||
|
uv
|
||||||
|
uv-build
|
||||||
]);
|
]);
|
||||||
in {
|
in {
|
||||||
packages = [
|
packages = [
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
./home-modules/git.nix
|
./home-modules/git.nix
|
||||||
./home-modules/gpg.nix
|
./home-modules/gpg.nix
|
||||||
./home-modules/helix.nix
|
./home-modules/helix.nix
|
||||||
./home-modules/latex.nix
|
# ./home-modules/latex.nix
|
||||||
./home-modules/nh.nix
|
./home-modules/nh.nix
|
||||||
./home-modules/nixd.nix
|
./home-modules/nixd.nix
|
||||||
./home-modules/nxgs.nix
|
./home-modules/nxgs.nix
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ pkgs, ... }@all: with all;
|
{ pkgs, ... }@all: with all;
|
||||||
{
|
{
|
||||||
systemd.timers."nx_cal_lec" = {
|
systemd.timers."nx_cal_lec" = {
|
||||||
enable = false;
|
enable = true;
|
||||||
wantedBy = [ "timers.target" ];
|
wantedBy = [ "timers.target" ];
|
||||||
timerConfig = {
|
timerConfig = {
|
||||||
OnBootSec = "40m";
|
OnBootSec = "40m";
|
||||||
|
|||||||
3
wsl.nix
3
wsl.nix
@@ -9,7 +9,7 @@
|
|||||||
./system-modules/users.nix
|
./system-modules/users.nix
|
||||||
];
|
];
|
||||||
environment.systemPackages = import ./system-modules/base-packages.nix pkgs;
|
environment.systemPackages = import ./system-modules/base-packages.nix pkgs;
|
||||||
system.stateVersion = hypr.pkgs-version;
|
system.stateVersion = hyper.main-pkgs-version;
|
||||||
wsl = {
|
wsl = {
|
||||||
defaultUser = hyper.user;
|
defaultUser = hyper.user;
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -27,4 +27,5 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
nixpkgs.hostPlatform = hyper.system;
|
nixpkgs.hostPlatform = hyper.system;
|
||||||
|
services.upower.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user