Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
erdnaxe
nixos
Commits
de9ecacc
Commit
de9ecacc
authored
May 28, 2022
by
erdnaxe
🦋
Browse files
Upgrade laptop to NixOS 22.05
parent
d3b8f527
Changes
3
Hide whitespace changes
Inline
Side-by-side
base/letsencrypt.nix
View file @
de9ecacc
{
# Let's Encrypt certificate default configuration
# This enables any service to use a Let's Encrypt certificate
security
.
acme
.
email
=
"a+acme@crans.org"
;
security
.
acme
.
defaults
.
email
=
"a+acme@crans.org"
;
security
.
acme
.
acceptTerms
=
true
;
# Security hardening
...
...
base/nix.nix
View file @
de9ecacc
...
...
@@ -6,7 +6,4 @@
# Restrict nix deamon to wheel group
nix
.
allowedUsers
=
[
"@wheel"
];
# Use more recent Nix
nix
.
package
=
pkgs
.
nix_2_7
;
# TODO: remove on NixOS 22.05
}
services/graphical-desktop.nix
View file @
de9ecacc
...
...
@@ -253,7 +253,9 @@
};
programs
.
chromium
=
{
enable
=
true
;
package
=
pkgs
.
ungoogled-chromium
;
package
=
pkgs
.
ungoogled-chromium
.
override
{
commandLineArgs
=
"--ozone-platform-hint=auto --force-dark-mode --enable-features=WebUIDarkMode --disable-features=UserAgentClientHint -incognito"
;
};
};
};
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment