Compare commits

...

3 commits

Author SHA1 Message Date
krizej
429a09f54b sdfg0we5p958tuiogstduhllljfkghs894eOR7utsyrf298479832475892 2024-07-20 12:44:41 +02:00
krizej
4f35052db0 bring in the demon 2024-07-14 01:37:03 +02:00
krizej
368f6c099d i forgot to commit once again xd 2024-07-14 01:17:46 +02:00
7 changed files with 39 additions and 11 deletions

View file

@ -1,3 +1,13 @@
/nix/store/r3rnr2z3090jd0aggbyg4vw6zjp5s3kq-autorandr-1.14/bin/.autorandr-wrapped:211: SyntaxWarning: invalid escape sequence '\s'
XRANDR_OUTPUT_REGEXP = """(?x)
/nix/store/r3rnr2z3090jd0aggbyg4vw6zjp5s3kq-autorandr-1.14/bin/.autorandr-wrapped:237: SyntaxWarning: invalid escape sequence '\s'
""" + XRANDR_PROPERTIES_REGEXP + """ | # Properties to include in the profile
/nix/store/r3rnr2z3090jd0aggbyg4vw6zjp5s3kq-autorandr-1.14/bin/.autorandr-wrapped:249: SyntaxWarning: invalid escape sequence '\S'
XRANDR_OUTPUT_MODES_REGEXP = """(?x)
/nix/store/r3rnr2z3090jd0aggbyg4vw6zjp5s3kq-autorandr-1.14/bin/.autorandr-wrapped:593: SyntaxWarning: invalid escape sequence '\s'
version = re.search("xrandr program version\s+([0-9\.]+)", version_string).group(1)
/nix/store/r3rnr2z3090jd0aggbyg4vw6zjp5s3kq-autorandr-1.14/bin/.autorandr-wrapped:889: SyntaxWarning: invalid escape sequence '\+'
match = re.match("(?P<w>[0-9]+)x(?P<h>[0-9]+)(?:\+(?P<x>[0-9]+))?(?:\+(?P<y>[0-9]+))?.*", output.options["panning"])
main: renaming display Left to DisplayPort-2
main: renaming display Right to HDMI-A-0
main (detected)

View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1720167120,
"narHash": "sha256-K9JYdlPiyaXp33JRg7CT8rMwH56e4ncXSsXW/YKnNXc=",
"lastModified": 1720734513,
"narHash": "sha256-neWQ8eNtLTd+YMesb7WjKl1SVCbDyCm46LUgP/g/hdo=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "bbe6e94737289c8cb92d4d8f9199fbfe4f11c0ba",
"rev": "90ae324e2c56af10f20549ab72014804a3064c7f",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1720031269,
"narHash": "sha256-rwz8NJZV+387rnWpTYcXaRNvzUSnnF9aHONoJIYmiUQ=",
"lastModified": 1720768451,
"narHash": "sha256-EYekUHJE2gxeo2pM/zM9Wlqw1Uw2XTJXOSAO79ksc4Y=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9f4128e00b0ae8ec65918efeba59db998750ead6",
"rev": "7e7c39ea35c5cdd002cd4588b03a3fb9ece6fad9",
"type": "github"
},
"original": {
@ -38,11 +38,11 @@
},
"nur": {
"locked": {
"lastModified": 1720179576,
"narHash": "sha256-4xPwUqy7DclUIgL7E2LpHLwXRWFZuIvZAIVZGmeOI64=",
"lastModified": 1720908054,
"narHash": "sha256-nRmtu5zaYvzvonEZaQlORbIoZvctVy3P3YraH/ChzG0=",
"owner": "nix-community",
"repo": "NUR",
"rev": "d133dd578e4610c60dba865df97ba1f4da282de8",
"rev": "fc076c6c1c848d6f950303f937b26d202b23d4b0",
"type": "github"
},
"original": {

View file

@ -4,6 +4,7 @@ args @ { pkgs, ... }:
nixpkgs.config.permittedInsecurePackages = [
"freeimage-unstable-2021-11-01"
"openssl-1.1.1w"
];
home-manager.users.krizej.programs.home-manager.enable = true;

View file

@ -20,6 +20,10 @@ in {
];
home.sessionVariables = {
XDG_DATA_HOME = "${HOME}/.local/share";
XDG_CONFIG_HOME = "${HOME}/.config";
XDG_STATE_HOME = "${HOME}/.local/state";
XDG_CACHE_HOME = "${HOME}/.cache";
# xdg crap thx poz
ANDROID_USER_HOME = "${XDG_DATA_HOME}/android";
ANDROID_HOME = "${XDG_DATA_HOME}/android/sdk";

View file

@ -14,12 +14,12 @@
mode = "1920x1080";
rate = "239.76";
position = "0x0";
primary = true;
};
"Right" = {
enable = true;
mode = "1920x1080";
rate = "74.97";
primary = true;
position = "1920x0";
};
};

View file

@ -36,14 +36,17 @@
gcc
gnumake
cmake
pkg-config
python39
python311
];
home-manager.users.krizej.home.packages = with pkgs; [
fortune
(fortune.override { withOffensive = true; })
yad
cloc
pavucontrol
pamixer
@ -57,26 +60,35 @@
ericw-tools-latest
trenchbroom
fteqcc
gmqcc
r2modman
godot_4
(pkgs.writeShellScriptBin "homm3" ''
cd ~/games/homm3
wine HD_Launcher.exe
'')
dosbox
wineWowPackages.stable
winetricks
libreoffice-qt
gimp
libresprite
sqlitebrowser
feh
vlc
obs-studio
yt-dlp
nixd
gdb
ccls
clang-tools
tcl
valgrind
linuxKernel.packages.linux_6_6.perf
ccache
jetbrains.pycharm-community
jetbrains.clion

View file

@ -1,6 +1,7 @@
i have no idea what i'm doing
todo:
- fix autorandr.txt
- fix formatting in pkgs/
- laptop config
- steal poz firefox config