Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Bernet
dotfiles
Commits
b3679d47
Commit
b3679d47
authored
6 months ago
by
David Bernet
Browse files
Options
Downloads
Patches
Plain Diff
Update configuration.nix
parent
5e3eea37
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nixos/nixos/configuration.nix
+29
-8
29 additions, 8 deletions
nixos/nixos/configuration.nix
with
29 additions
and
8 deletions
nixos/nixos/configuration.nix
+
29
−
8
View file @
b3679d47
...
...
@@ -49,10 +49,18 @@
services
.
xserver
.
displayManager
.
lightdm
.
enable
=
true
;
services
.
xserver
.
desktopManager
.
cinnamon
.
enable
=
true
;
services
.
xserver
.
windowManager
.
awesome
=
{
enable
=
true
;
luaModules
=
with
pkgs
.
luaPackages
;
[
luarocks
# is the package manager for Lua modules
luadbi-mysql
# Database abstraction layer
];
};
# Configure keymap in X11
services
.
xserver
=
{
services
.
xserver
.
xkb
=
{
layout
=
"de"
;
xkbV
ariant
=
""
;
v
ariant
=
""
;
};
# Configure console keymap
...
...
@@ -70,7 +78,7 @@
alsa
.
support32Bit
=
true
;
pulse
.
enable
=
true
;
# If you want to use JACK applications, uncomment this
jack
.
enable
=
true
;
#
jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
...
...
@@ -86,12 +94,22 @@
description
=
"hexe"
;
extraGroups
=
[
"networkmanager"
"wheel"
];
packages
=
with
pkgs
;
[
thunderbird
rofi
kitty
papirus-icon-theme
fira-code
flameshot
keepassxc
thunderbird
vscode
cargo
kitty
obsidian
pavucontrol
rpi-imager
transmission
transmission-gtk
gnome
.
gnome-disk-utility
];
};
...
...
@@ -104,9 +122,11 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment
.
systemPackages
=
with
pkgs
;
[
wget
git
python3
nano
wget
git
python3
];
# Some programs need SUID wrappers, can be configured further or are
...
...
@@ -135,4 +155,5 @@
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system
.
stateVersion
=
"24.05"
;
# Did you read the comment?
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment