This commit is contained in:
Tyrel Souza 2023-01-17 19:56:03 -05:00
parent ad75423f81
commit 4628fda65f
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
OS := if "${HOME}" =~ '/U.*' {
"macos"
} else {
if `cat /etc/issue | grep -i debian` =~ "Deb.*" { "debian" } else { "ubuntu" }
if `cat /etc/issue` =~ "Deb.*" { "debian" } else { "ubuntu" }
}
HOSTNAME := `hostname| sed 's/.local//'`
NIXPATH := "nixpkgs=/nix/var/nix/profiles/per-user/tyrel/channels/nixpkgs:/nix/var/nix/profiles/per-user/tyrel/channels"