Compare commits
No commits in common. "b13c022ea4fce941c393baf6b93211616419b7a4" and "a9e36cfa9c13c6cfeb04d9f9ec66b125cf3b179d" have entirely different histories.
b13c022ea4
...
a9e36cfa9c
5 changed files with 61 additions and 37 deletions
|
@ -13,7 +13,6 @@
|
|||
|
||||
../programs/ghostty.nix
|
||||
../programs/gnome.nix
|
||||
../programs/java.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
@ -71,29 +70,36 @@
|
|||
enable32Bit = true;
|
||||
};
|
||||
|
||||
hm.home = {
|
||||
packages = with pkgs; [
|
||||
chromium
|
||||
(discord.override {
|
||||
withOpenASAR = true;
|
||||
withVencord = true;
|
||||
})
|
||||
gimp
|
||||
gparted
|
||||
idea-ultimate-fixed
|
||||
mpv
|
||||
obsidian
|
||||
strawberry
|
||||
teams-for-linux
|
||||
thunderbird
|
||||
vscode
|
||||
|
||||
# libreoffice stuff
|
||||
libreoffice-qt6-fresh
|
||||
hunspell
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.fr-moderne
|
||||
hm = {
|
||||
imports = [
|
||||
../programs/java.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
chromium
|
||||
(discord.override {
|
||||
withOpenASAR = true;
|
||||
withVencord = true;
|
||||
})
|
||||
gimp
|
||||
gparted
|
||||
idea-ultimate-fixed
|
||||
krita
|
||||
mpv
|
||||
obsidian
|
||||
strawberry
|
||||
teams-for-linux
|
||||
thunderbird
|
||||
vscode
|
||||
|
||||
# libreoffice stuff
|
||||
libreoffice-qt6-fresh
|
||||
hunspell
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.fr-moderne
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
i18n.extraLocaleSettings = {
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
# wee oo wee oo warning !!! this is a home manager module!!! destined to be put in hm's import, not nixos' !!!!
|
||||
{
|
||||
environment.systemPackages = [ pkgs.jetbrains.rider ];
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (config.lib.file) mkOutOfStoreSymlink;
|
||||
in
|
||||
{
|
||||
home = {
|
||||
packages = [ pkgs.jetbrains.rider ];
|
||||
|
||||
systemd.tmpfiles.rules = [
|
||||
"L /opt/dotnet/8 - - - - ${pkgs.dotnet-sdk_8}/share/dotnet"
|
||||
"L /opt/dotnet/mono - - - - ${pkgs.mono}"
|
||||
];
|
||||
file = {
|
||||
".dotnet/8".source = mkOutOfStoreSymlink "${pkgs.dotnet-sdk_8}/share/dotnet";
|
||||
".dotnet/mono".source = mkOutOfStoreSymlink pkgs.mono;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
hm.home.packages = with pkgs; [
|
||||
obs-studio
|
||||
osu-lazer-bin
|
||||
krita
|
||||
|
||||
(prismlauncher.override {
|
||||
jdks = [
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
# wee oo wee oo warning !!! this is a home manager module!!! destined to be put in hm's import, not nixos' !!!!
|
||||
{
|
||||
systemd.tmpfiles.rules = [
|
||||
"L /opt/temurin-21 - - - - ${pkgs.temurin-bin-21}"
|
||||
"L /opt/temurin-17 - - - - ${pkgs.temurin-bin-17}"
|
||||
"L /opt/temurin-8 - - - - ${pkgs.temurin-bin-8}"
|
||||
];
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (config.lib.file) mkOutOfStoreSymlink;
|
||||
in
|
||||
{
|
||||
home.file = {
|
||||
".jdks/temurin-21".source = mkOutOfStoreSymlink pkgs.temurin-bin-21;
|
||||
".jdks/temurin-17".source = mkOutOfStoreSymlink pkgs.temurin-bin-17;
|
||||
".jdks/temurin-8".source = mkOutOfStoreSymlink pkgs.temurin-bin-8;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
imports = [
|
||||
camasca.nixosModules.asus-numpad
|
||||
../../programs/games.nix
|
||||
../../programs/dotnet.nix.nix
|
||||
];
|
||||
|
||||
hm.imports = [ ../../programs/dotnet.nix ];
|
||||
|
||||
services.asus-numpad = {
|
||||
enable = true;
|
||||
settings.layout = "M433IA";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue